From dd81654b33cb66f7e1da0426f71fd2a3f08c54ba Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 15 Jan 2016 09:56:50 -0800 Subject: [PATCH] Fix path to korebuild folder in bash script --- KoreBuild-dotnet/build/KoreBuild.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/KoreBuild-dotnet/build/KoreBuild.sh b/KoreBuild-dotnet/build/KoreBuild.sh index 18662e35ff..ef5513d397 100755 --- a/KoreBuild-dotnet/build/KoreBuild.sh +++ b/KoreBuild-dotnet/build/KoreBuild.sh @@ -48,8 +48,9 @@ fi export DOTNET_INSTALL_DIR=~/.dotnet export PATH=~/.dotnet/bin:$PATH export DOTNET_HOME=DOTNET_INSTALL_DIR -export KOREBUILD_FOLDER=$koreBuildFolder -source $thisDir/dotnet-install.sh +export KOREBUILD_FOLDER="$(dirname $thisDir)" +chmod +x $thisDir/dotnet-install.sh +$thisDir/dotnet-install.sh # ==== Temporary ==== if ! type dnvm > /dev/null 2>&1; then source $thisDir/dnvm.sh