[decompiler] Clean up config more (#458)

* remove global config

* fix dir
This commit is contained in:
water111
2021-05-11 20:49:54 -04:00
committed by GitHub
parent d7d563814f
commit 0599d144f8
17 changed files with 926 additions and 690 deletions
+8 -6
View File
@@ -8,7 +8,6 @@ echo "======================================="
echo ""
echo " ================= Cloning..."
cd ../..
ISO_DATA_PATH=${1}
BRANCH_NAME=${2:-master}
# Provide a default location to bind the ISO_DATA_PATH
@@ -42,19 +41,22 @@ make -j
echo " ================ Running unit tests..."
../test.sh
echo " ================ Running offline decompiler tests..."
./offline-test
echo " ================ Decompiling..."
../decomp.sh
../scripts/shell/decomp.sh
echo " ================ Building assets..."
../gc.sh -cmd \(build-data\)
../scripts/shell/gc.sh -cmd \(build-data\)
echo " ================ Checking assets..."
../check.sh
../scripts/shell/check.sh
echo " ================ Building game..."
../gc.sh -cmd \(build-game\)
../scripts/shell/gc.sh -cmd \(build-game\)
echo " ================ Booting game..."
../boot_game.sh
../scripts/shell/boot_game.sh
echo "Offline test has completed successfully!"