-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,9 +31,10 @@ using JSON | |
|
||
"Prefix for installation of all the packages." | ||
const PREFIX = abspath(dirname(@__FILE__), "..", "deps", "usr") | ||
@unix_only bindir(package) = joinpath(PREFIX, "bin", package) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
dhoegh
Author
Owner
|
||
@windows_only bindir(package) = joinpath(PREFIX, "Scripts", package) | ||
This comment has been minimized.
Sorry, something went wrong.
Luthaf
|
||
|
||
@unix_only const conda = joinpath(PREFIX, "bin", "conda") | ||
@windows_only const conda = joinpath(PREFIX, "Scripts", "conda") | ||
const conda = bindir("conda") | ||
|
||
CHANNELS = AbstractString[] | ||
additional_channels() = ["--channel " * channel for channel in CHANNELS] | ||
|
On unix,
bindir(package) = joinpath(PREFIX, "bin")
should do the trick.