Skip to content

Commit

Permalink
os2-buildbot.sh: Fix upload path.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed May 19, 2020
1 parent a1d7410 commit 20ed801
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build-scripts/os2-buildbot.sh
Expand Up @@ -19,7 +19,7 @@ ZIPFILE="$1"
if [ -z $1 ]; then
ZIPFILE=sdl-os2.zip
fi
ZIPDIR=buildbot
ZIPDIR=buildbot/SDL

set -e
set -x
Expand All @@ -30,11 +30,11 @@ cd ..
rm -f $ZIPFILE
wmake -f Makefile.os2
rm -rf $ZIPDIR
mkdir $ZIPDIR
mkdir -p $ZIPDIR
chmod a+r SDL2.lib SDL2.dll
mv SDL2.lib SDL2.dll $ZIPDIR/
cp -R include $ZIPDIR/
zip -9r "$ZIPFILE" $ZIPDIR
zip -9r "buildbot/$ZIPFILE" $ZIPDIR

wmake -f Makefile.os2 distclean

Expand Down

0 comments on commit 20ed801

Please sign in to comment.