Skip to content

Commit

Permalink
CI-CD: correct CI-CD build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalak committed Mar 17, 2024
1 parent 2e72a3b commit bc9e67e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ci/buildx.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ if "%OWBUILD_STAGE%" == "boot" (
mkdir %OWROOT%\bld\wmake\%OWOBJDIR%
cd %OWROOT%\bld\wmake\%OWOBJDIR%
if "%OWTOOLS%" == "WATCOM" (
wmake -f ..\wmake
wmake -m -f ..\wmake
) else (
nmake -f ..\nmake
)
Expand Down
2 changes: 1 addition & 1 deletion ci/buildx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bootutil_proc()
if [ "$OWTOOLS" = "WATCOM" ]; then
mkdir $OWROOT/bld/wmake/$OWOBJDIR
cd $OWROOT/bld/wmake/$OWOBJDIR
wmake -f ../wmake
wmake -m -f ../wmake
RC=$?
else
case `uname` in
Expand Down
2 changes: 1 addition & 1 deletion ci/covbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mkdir $OWROOT/build/$OWOBJDIR
mkdir $OWROOT/bld/wmake/$OWOBJDIR
cd $OWROOT/bld/wmake/$OWOBJDIR
if [ "$OWTOOLS" = "WATCOM" ]; then
wmake -f ../wmake
wmake -m -f ../wmake
else
case `uname` in
FreeBSD)
Expand Down

0 comments on commit bc9e67e

Please sign in to comment.