Skip to content

Commit b668df0

Browse files
Fix CRYSTAL_PATH in omnibus recipe (#223)
1 parent a50ff10 commit b668df0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

omnibus/config/software/crystal.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040
end
4141

4242
if macos? || mac_os_x?
43-
env["CRYSTAL_PATH"] = "/private/var/cache/omnibus/src/crystal/src"
43+
env["CRYSTAL_PATH"] = "lib:/private/var/cache/omnibus/src/crystal/src"
4444
else
45-
env["CRYSTAL_PATH"] = "#{project_dir}/src"
45+
env["CRYSTAL_PATH"] = "lib:#{project_dir}/src"
4646
end
4747

4848
build do

0 commit comments

Comments
 (0)