Skip to content

Commit ee14acf

Browse files
committed
Make linux bash file not upload home directory path
1 parent a2e9465 commit ee14acf

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

scripts/build_command_line_linux.bash

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,11 @@ rm $BUILD_DIR/Web2ExeLinux/files/error.log \
6666

6767
################# Zip and Upload to Github ###################
6868

69-
zip -r -9 $BUILD_DIR/Web2ExeLinux-CMD.zip $BUILD_DIR/Web2ExeLinux-CMD/*
70-
zip -r -9 $BUILD_DIR/Web2ExeLinux-${VERSION}.zip $BUILD_DIR/Web2ExeLinux
69+
cd $BUILD_DIR
70+
71+
zip -r -9 Web2ExeLinux-CMD.zip Web2ExeLinux-CMD/*
72+
zip -r -9 Web2ExeLinux-${VERSION}.zip Web2ExeLinux
73+
74+
cd -
7175

7276
python3.4 $DIR/upload_release.py

0 commit comments

Comments
 (0)