-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogress_script.sh
More file actions
executable file
·45 lines (40 loc) · 1.3 KB
/
progress_script.sh
File metadata and controls
executable file
·45 lines (40 loc) · 1.3 KB
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
36
37
38
39
40
41
42
43
44
#!/bin/bash
BF_DIR=~/Workspace/Projects/Personal/BattleFactory
PokemonEntry_DIR=$BF_DIR/PokemonEntry
Pokedex_DIR=$BF_DIR/Pokedex
GlobalDestroyer_DIR=$BF_DIR/GlobalDestroyer
Special_Util_DIR=$BF_DIR/BF_Special_Util
TG_DIR=$BF_DIR/TagGenerator
SC_DIR=$BF_DIR/SpecialConstants
RD_DIR=$BF_DIR/RetrieveData
RTI_DIR=$BF_DIR/RipTheInternet
PPF_DIR=$BF_DIR/ParsePokedexFile
echo $BF_DIR
echo $PokemonEntry_DIR
echo $Pokedex_DIR
echo $GlobalDestroyer_DIR
cd $PokemonEntry_DIR
git add PokemonEntry.c PokemonEntry.h PokemonStats.c PokemonStats.h Typing.c Typing.h Main.c PokemonMove.c PokemonMove.h \
PokemonMoveSet.c PokemonMoveSet.h PokemonMoveTester.c
cd $Pokedex_DIR
git add Pokedex.c Pokedex.h PokedexTesterMain.c
cd $GlobalDestroyer_DIR
git add GlobalDestroyer.c GlobalDestroyer.h
cd $Special_Util_DIR
git add Special_Util.c Special_Util.h
cd $TG_DIR
git add FillDataFiles.c FillDataFiles.h TagGenTester.c
cd $SC_DIR
git add SpecialConstants.h
cd $PPF_DIR
git add DeleteMoveDuplicates.py ParseFactoryEntryFiles.py
cd $RTI_DIR
git add EnterBaseStatsFromBulbapediaFile.py
cd $RD_DIR
git add RetrievePokemon.h RetrievePokemon.c RetrieveTester.c
cd $BF_DIR
git add Output_R1.txt Output_R2.txt Output_R3.txt Output_R4.txt DexterDataFile.txt
git add com_script.sh progress_script.sh
git add MakeFile
git commit
git push origin master