File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ VERSIONFILE="$PACKAGE.version"
88
99DLLS = "$PACKAGE"
1010# PluginData DLLs
11- PD_DLLS = ""
11+ PD_DLLS = "$PACKAGE "
1212# Rule oriented deployoment for PluginData
1313#declare - A PD_SUB_RULES =( [ "KSPe.UI.12" ]= "./12x/KSPe.UI" [ "KSPe.UI.14" ]= "./14x/KSPe.UI" [ "KSPe.UI.18" ]= "./18x/KSPe.UI" )
1414declare - A PD_SUB_RULES =( )
Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ set -euo pipefail
55IFS=$' \n\t '
66source ./CONFIG.inc
77
8- echo Not yet!
9- exit -1
10-
118clean () {
129 rm -fR $FILE
1310 if [ ! -d Archive ] ; then
Original file line number Diff line number Diff line change @@ -17,8 +17,10 @@ FILE=${pwd}/Archive/$PACKAGE-$VERSION${PROJECT_STATE}.zip
1717echo $FILE
1818clean
1919zip -r $FILE ./GameData/* -x " .*"
20+ set +e
2021zip -r $FILE ./PluginData/* -x " .*"
2122zip -r $FILE ./Extras/* -x " .*"
2223zip $FILE INSTALL.md
2324zip -d $FILE " __MACOSX/*" " **/.DS_Store"
25+ set -e
2426cd $pwd
You can’t perform that action at this time.
0 commit comments