use corerun in wrapper

This commit is contained in:
Bryan 2015-10-19 14:57:34 -07:00
parent 79a89f8b8b
commit dc57fdf29a
3 changed files with 3 additions and 3 deletions

View file

@ -8,4 +8,4 @@ while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symli
done done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
exec "$DIR/dotnet-compile" "$@" exec "$DIR/corerun" "$DIR/dotnet-compile.dll" "$@"

View file

@ -8,4 +8,4 @@ while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symli
done done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
exec "$DIR/dotnet-publish" "$@" exec "$DIR/corerun" "$DIR/dotnet-publish.dll" "$@"

View file

@ -8,4 +8,4 @@ while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symli
done done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
exec "$DIR/dotnet" "$@" exec "$DIR/corerun" "$DIR/dotnet.dll" "$@"