Skip to content

Commit

Permalink
Fix CRYSTAL_PATH in omnibus recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
straight-shoota committed Feb 4, 2023
1 parent 461e3fb commit d31ed02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions omnibus/config/software/crystal.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
end

if macos? || mac_os_x?
env["CRYSTAL_PATH"] = "/private/var/cache/omnibus/src/crystal/src"
env["CRYSTAL_PATH"] = "lib:/private/var/cache/omnibus/src/crystal/src"
else
env["CRYSTAL_PATH"] = "#{project_dir}/src"
env["CRYSTAL_PATH"] = "lib:#{project_dir}/src"
end

build do
Expand Down

0 comments on commit d31ed02

Please sign in to comment.