make linux script more noob friendly

This commit is contained in:
dark-samus 2015-11-08 10:20:37 -05:00 committed by d0k3
parent 677264a6c6
commit 76f8e67a0d

5
go.sh
View file

@ -1,3 +1,6 @@
#!/bin/bash #!/bin/bash
for x in input/*.cia; do . tools/process.sh $x input/hs.app; done if [ -e input/hs.app ]
then for x in input/*.cia; do . tools/process.sh $x input/hs.app; done
else printf "ERROR: hs.app not found\nPlease generate hs.app with Decrypt9 and put it into the input folder\n"
fi