From 5e78b50f3de5c99f469f679ad11d794526d6cd8f Mon Sep 17 00:00:00 2001 From: Jarret Shook Date: Fri, 23 Sep 2016 07:16:09 -0700 Subject: Remove the dependency of using config.json in cwd (#7330) Currently the config.json file is looked for in the current working directory. This change forces run.exe to use the relative path of the file relative to the build script. --- run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'run.sh') diff --git a/run.sh b/run.sh index 1c9299ae17..bd6a68f2bb 100755 --- a/run.sh +++ b/run.sh @@ -8,8 +8,8 @@ $working_tree_root/init-tools.sh toolRuntime=$working_tree_root/Tools dotnet=$toolRuntime/dotnetcli/dotnet -echo "Running: $dotnet $toolRuntime/run.exe $*" -$dotnet $toolRuntime/run.exe $* +echo "Running: $dotnet $toolRuntime/run.exe $working_tree_root/config.json $*" +$dotnet $toolRuntime/run.exe $working_tree_root/config.json $* if [ $? -ne 0 ] then echo "ERROR: An error occured in $dotnet $toolRuntime/run $#. Check $# logs under $working_tree_root." -- cgit v1.2.3