-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sh
More file actions
29 lines (22 loc) · 735 Bytes
/
build.sh
File metadata and controls
29 lines (22 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#/bin/bash
echo "removing artifacts..."
rm -r build/
echo "creating directories..."
mkdir -p build/scripts
# mkdir -p build/images/inventoryimages
# mkdir -p build/anim
# echo "compiling animations..."
# "C:\Program Files (x86)\Steam\steamapps\common\Don't Starve Mod Tools\mod_tools\scml.exe" some-animation/animation.scml .
echo "copying files and scripts..."
cp -r scripts/* build/scripts/
# cp images/inventoryimages/*.xml build/images/inventoryimages
# cp images/inventoryimages/*.tex build/images/inventoryimages
cp -r anim/*.zip build/anim/
cp my-mod-name.xml build/
cp my-mod-name.tex build/
cp *.lua build/
cp CONTRIBUTORS build/
cp LICENSE build/
cp README* build/
cp my-mod-name.png build/preview.jpg
echo "Finished."