Skip to content

Commit

Permalink
Fixed common warnings in make-release.sh
Browse files Browse the repository at this point in the history
Also auto-formatted it with PyCharm formatter
  • Loading branch information
allista committed Feb 18, 2022
1 parent 47e9592 commit 245bc9a
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions make-release.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
#!/bin/bash

cd $(dirname "$0")
CWD=$(dirname "$0")
cd "${CWD}" || exit

make_mod_release -s 'Source' \
-e '*/ForModders/*' '*/config.xml' '*.user' '*.orig' '*.mdb' '*.pdb' \
'*/System.*.dll' '*/Mono.*.dll' '*/Unity*.dll' \
'GameData/000_AT_Utils/Plugins/AnimatedConverters.dll' \
'GameData/000_AT_Utils/Plugins/SubmodelResizer.dll' \
'GameData/ConfigurableContainers/Parts/*' \
'GameData/000_AT_Utils/ResourceHack.cfg' \
-i '../AT_Utils/GameData' '../AT_Utils/ConfigurableContainers/GameData'
make_mod_release -s 'Source' \
-e '*/ForModders/*' '*/config.xml' '*.user' '*.orig' '*.mdb' '*.pdb' \
'*/System.*.dll' '*/Mono.*.dll' '*/Unity*.dll' \
'GameData/000_AT_Utils/Plugins/AnimatedConverters.dll' \
'GameData/000_AT_Utils/Plugins/SubmodelResizer.dll' \
'GameData/ConfigurableContainers/Parts/*' \
'GameData/000_AT_Utils/ResourceHack.cfg' \
-i '../AT_Utils/GameData' '../AT_Utils/ConfigurableContainers/GameData'

0 comments on commit 245bc9a

Please sign in to comment.