-
Notifications
You must be signed in to change notification settings - Fork 5
/
make.sh
executable file
·35 lines (35 loc) · 1.04 KB
/
make.sh
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
30
31
32
33
34
35
#!/usr/bin/env bash
rm *.zip
zip -ur TokenFrames.zip module.json packs
cd Sourced_From_Jinker
zip -ur ../TokenFrames.zip token_frames
cd ..
cd Sourced_From_TokenTool
zip -ur ../TokenFrames.zip token_frames
cd ..
cd Sourced_From_MTVExtreme
zip -ur ../TokenFrames.zip token_frames
cd ..
cd Sourced_From_Benjosity
zip -ur ../TokenFrames.zip token_frames
cd ..
cd Sourced_From_pngwing
zip -ur ../TokenFrames.zip token_frames
cd ..
cd Sourced_From_pdzoch
zip -ur ../TokenFrames.zip token_frames
cd ..
cd Sourced_From_Drehatlas
zip -ur ../TokenFrames.zip token_frames
cd ..
cd Sourced_From_EldritchImp
zip -ur ../TokenFrames.zip token_frames
cd ..
cd Sourced_From_gus-uktena
zip -ur ../TokenFrames.zip token_frames
cd ..
ver=`grep \"version\" module.json`
printf "\033[0;34mRemember that in order to make a release:\033[0m\n"
printf "\033[0;31m - git tag this version with the module.json version (${ver})\n"
printf " - upload the new TokenFrames.zip as WELL as the module.json into the github release!\n"
printf " - update the CHANGELOG.md file with this version.\033[0m\n"