Skip to content

Commit 3bb546f

Browse files
committed
rake: Fix targets
1 parent 6cefc93 commit 3bb546f

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Rakefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ namespace "api" do
9494
begin
9595
puts "System has no doxyrest, trying nix"
9696
sh "nix-shell #{NIXSHELL} --run 'doxyrest -c #{DOXLUA}'"
97-
# rescue
98-
# puts "Falling back to conda"
99-
# sh "conda run doxyrest -c #{DOXLUA}"
97+
rescue
98+
puts "Falling back to conda"
99+
sh "conda run doxyrest -c #{DOXLUA}"
100100
end
101101
else
102102
raise ExecException.new
@@ -105,9 +105,9 @@ namespace "api" do
105105
begin
106106
puts "System has no doxyrest, trying nix"
107107
sh "nix-shell #{NIXSHELL} --run 'doxyrest -c #{DOXLUA}'"
108-
rescue
109-
puts "Falling back to conda"
110-
sh "conda run doxyrest -c #{DOXLUA}"
108+
# rescue
109+
# puts "Falling back to conda"
110+
# sh "conda run doxyrest -c #{DOXLUA}"
111111
end
112112
else
113113
raise RunnerException.new

0 commit comments

Comments
 (0)