Skip to content

Commit

Permalink
Update build script (2).
Browse files Browse the repository at this point in the history
  • Loading branch information
hamster620 committed Oct 20, 2024
1 parent c76f9c3 commit 096f17a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion BuildLinuxPackages.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ IF not exist Packages (
)

REM Build packaging tool
dotnet build --project PackagingTool -c Release -f %FRAMEWORK%
dotnet build PackagingTool -c Release -f %FRAMEWORK%
if %ERRORLEVEL% neq 0 (
exit
)
Expand Down
2 changes: 1 addition & 1 deletion BuildLinuxPackages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PACKAGING_TOOL_PATH="PackagingTool/bin/Release/$FRAMEWORK/CarinaStudio.ULogViewe
echo "********** Start building $APP_NAME **********"

# Build packaging tool
dotnet build --project PackagingTool -c Release -f $FRAMEWORK
dotnet build PackagingTool -c Release -f $FRAMEWORK
if [ "$?" != "0" ]; then
exit
fi
Expand Down
2 changes: 1 addition & 1 deletion BuildMacOSPackages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ CERT_NAME="" # Name of certification to sign the application
echo "********** Start building $APP_NAME **********"

# Build packaging tool
dotnet build --project PackagingTool -c Release -f $FRAMEWORK
dotnet build PackagingTool -c Release -f $FRAMEWORK
if [ "$?" != "0" ]; then
exit
fi
Expand Down
2 changes: 1 addition & 1 deletion BuildWindowsPackages.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ IF not exist Packages (
)

REM Build packaging tool
dotnet build --project PackagingTool -c Release -f %FRAMEWORK%
dotnet build PackagingTool -c Release -f %FRAMEWORK%
if %ERRORLEVEL% neq 0 (
exit
)
Expand Down

0 comments on commit 096f17a

Please sign in to comment.