From 091125ecc548fb0249704cb07e9d509c623696ef Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Thu, 8 Sep 2022 11:21:39 -0400 Subject: [PATCH] Github action stuff --- Makefile | 2 +- tools/make-mv3.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6765a1cef..6b288f849 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,7 @@ mv3-quick: tools/make-mv3.sh $(sources) $(platform) tools/make-mv3.sh quick mv3-full: tools/make-mv3.sh $(sources) $(platform) - tools/make-mv3.sh all + tools/make-mv3.sh full # Update submodules. update-submodules: diff --git a/tools/make-mv3.sh b/tools/make-mv3.sh index 0a56fd04d..5cdf3f199 100755 --- a/tools/make-mv3.sh +++ b/tools/make-mv3.sh @@ -62,8 +62,8 @@ if [ "$1" = "full" ]; then cd $TMPDIR > /dev/null rm log.txt zip $PACKAGENAME -qr ./* - cp $PACKAGENAME $(dirname $DES/)/ + cp $PACKAGENAME $DES/ cd - > /dev/null rm -rf $TMPDIR - echo "Package location: $(pwd)/$PACKAGENAME" + echo "Package location: $(pwd)/dist/build/$PACKAGENAME" fi