From f6695f7e6bbe9fc38682136ddd96156917ab06cc Mon Sep 17 00:00:00 2001 From: Peter Huene Date: Sun, 7 Jan 2018 23:35:01 -0800 Subject: [PATCH] Fix build environment script. Script was missing a `/` for setting the `PATH` environment variable correctly. --- scripts/cli-build-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cli-build-env.sh b/scripts/cli-build-env.sh index 05231edcb..1534aeb66 100644 --- a/scripts/cli-build-env.sh +++ b/scripts/cli-build-env.sh @@ -13,7 +13,7 @@ done REPO_ROOT="$( cd -P "$( dirname "$SOURCE" )/../" && pwd )" -STAGE0_DIR=$REPO_ROOT.dotnet_stage0/x64 +STAGE0_DIR=$REPO_ROOT/.dotnet_stage0/x64 export PATH=$STAGE0_DIR:$PATH