1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2025-01-30 16:42:47 +01:00

Merge pull request #16 from lxsang/master

fix antos build destination
This commit is contained in:
Xuan Sang LE 2020-09-18 13:37:08 +02:00 committed by GitHub
commit 6bde15ff78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,8 +24,8 @@ fi
cd "$PRJ" || (echo "Unable to change directory to source code folder" && exit 1)
npm i @types/jquery
mkdir -p "$DEST/os"
BUILDDIR="$DEST" make release
BUILDDIR="$DEST/os" make release
mkdir -p "$DEST/grs"
BUILDDIR="$DEST" make standalone_tags
BUILDDIR="$DEST/grs" make standalone_tags
echo "Done!"
} 2>&1 | tee "/opt/www/htdocs/ci/log/${PRJ}_${BRANCH}.txt"