The zsh PATH issue strikes again; Use more portable code
This commit is contained in:
parent
9f43764458
commit
088d3b7f68
|
@ -28,7 +28,7 @@ export GO111MODULE=on
|
||||||
export NIM_PATH=$(cd "${ABS_PATH}/../vendor/Nim/bin"; pwd)
|
export NIM_PATH=$(cd "${ABS_PATH}/../vendor/Nim/bin"; pwd)
|
||||||
|
|
||||||
# Nimble needs this to be an absolute path
|
# Nimble needs this to be an absolute path
|
||||||
export NIMBLE_DIR="${ABS_PATH}/../../.nimble"
|
export NIMBLE_DIR=$(cd "${ABS_PATH}/../../.nimble"; pwd)
|
||||||
|
|
||||||
#- make it an absolute path, so we can call this script from other dirs
|
#- make it an absolute path, so we can call this script from other dirs
|
||||||
#- we can't use native Windows paths in here, because colons can't be escaped in PATH
|
#- we can't use native Windows paths in here, because colons can't be escaped in PATH
|
||||||
|
|
Loading…
Reference in New Issue