Skip to content

Commit 0df7082

Browse files
committed
Updating automation scripts
1 parent 1ba066b commit 0df7082

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

CONFIG.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ VERSIONFILE="$PACKAGE.version"
88

99
DLLS="$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" )
1414
declare -A PD_SUB_RULES=( )

pack-curse.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ set -euo pipefail
55
IFS=$'\n\t'
66
source ./CONFIG.inc
77

8-
echo Not yet!
9-
exit -1
10-
118
clean() {
129
rm -fR $FILE
1310
if [ ! -d Archive ] ; then

pack-full.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ FILE=${pwd}/Archive/$PACKAGE-$VERSION${PROJECT_STATE}.zip
1717
echo $FILE
1818
clean
1919
zip -r $FILE ./GameData/* -x ".*"
20+
set +e
2021
zip -r $FILE ./PluginData/* -x ".*"
2122
zip -r $FILE ./Extras/* -x ".*"
2223
zip $FILE INSTALL.md
2324
zip -d $FILE "__MACOSX/*" "**/.DS_Store"
25+
set -e
2426
cd $pwd

0 commit comments

Comments
 (0)