Skip to content

Commit 2768a06

Browse files
authored
build: remove prerelease flag for dotnet-exec tool
1 parent d2980bf commit 2768a06

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

build.ps1

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
[string]$SCRIPT = '.\build\build.cs'
2-
3-
# Install dotnet tool
4-
dotnet tool install --global dotnet-execute --prerelease
5-
6-
Write-Host "dotnet-exec $SCRIPT --args $ARGS" -ForegroundColor GREEN
7-
8-
dotnet-exec $SCRIPT --args $ARGS
1+
[string]$SCRIPT = '.\build\build.cs'
2+
3+
# Install dotnet tool
4+
dotnet tool install --global dotnet-execute
5+
6+
Write-Host "dotnet-exec $SCRIPT --args $ARGS" -ForegroundColor GREEN
7+
8+
dotnet-exec $SCRIPT --args $ARGS

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
SCRIPT='./build/build.cs'
33

44
# Install tool
5-
dotnet tool install --global dotnet-execute --prerelease
5+
dotnet tool install --global dotnet-execute
66
export PATH="$PATH:$HOME/.dotnet/tools"
77

88
echo "dotnet-exec $SCRIPT --args=$@"

0 commit comments

Comments
 (0)