Skip to content

Commit 48eb4b6

Browse files
committed
Fixed "all" package missing
1 parent f1108ce commit 48eb4b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

module/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ if [ ! -d "./build/release" ]; then mkdir -p "./build/release"; fi
5454
find $MODULE_TEMPLATE/out -name "*.zip" | xargs -I{} bash -c "cp -fv {} ./build/release/\$(basename {})"
5555
ZIPNAME=$(ls $MODULE_TEMPLATE/out/ | grep -E "\.zip$" | head -n1 | sed -E 's/-[A-Za-z]+-v/-all-v/g')
5656
CURRENT_DIR="$PWD"
57-
cd "$CURRENT_DIR/$MODULE_TEMPLATE/out"
57+
cd "$MODULE_TEMPLATE/out"
5858
zip -u "$CURRENT_DIR/build/release/$ZIPNAME" *.zip
5959
cd "$CURRENT_DIR/src/installer"
6060
zip -ur "$CURRENT_DIR/build/release/$ZIPNAME" * || true

0 commit comments

Comments
 (0)