Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Add temporary logging to help us trace down root cause for dotnet/cor…
Browse files Browse the repository at this point in the history
…eclr#16063 (#26866)
  • Loading branch information
jkotas committed Feb 6, 2018
1 parent 4d091d4 commit 8c947b7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,10 @@ __dotnet=$__toolRuntime/dotnetcli/dotnet

cd $__scriptpath
$__dotnet $__toolRuntime/run.exe $__scriptpath/config.json "$@"
exit $?
if [ $? -ne 0 ]; then
local exit=$?
echo "run.sh: dotnet run failed with exit code $exit"
exit $exit
fi
echo "run.sh: dotnet run succeeded"
exit 0

0 comments on commit 8c947b7

Please sign in to comment.