From 4849cdeb45f5803306f7e7437d62b7e718073196 Mon Sep 17 00:00:00 2001 From: lxsang Date: Fri, 18 Sep 2020 13:36:20 +0200 Subject: [PATCH] fix antos build destination --- ci/scripts/antos.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/scripts/antos.sh b/ci/scripts/antos.sh index 5341cdf..9c023c8 100644 --- a/ci/scripts/antos.sh +++ b/ci/scripts/antos.sh @@ -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"