From 088d3b7f6843fd61c829a5a0c0c29912945963ae Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Tue, 25 Feb 2020 15:46:29 +0200 Subject: [PATCH] The zsh PATH issue strikes again; Use more portable code --- scripts/env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/env.sh b/scripts/env.sh index 9637e07..8f95aac 100755 --- a/scripts/env.sh +++ b/scripts/env.sh @@ -28,7 +28,7 @@ export GO111MODULE=on export NIM_PATH=$(cd "${ABS_PATH}/../vendor/Nim/bin"; pwd) # 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 #- we can't use native Windows paths in here, because colons can't be escaped in PATH