make linux script more noob friendly
This commit is contained in:
parent
677264a6c6
commit
76f8e67a0d
1 changed files with 4 additions and 1 deletions
5
go.sh
5
go.sh
|
@ -1,3 +1,6 @@
|
|||
#!/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
|
||||
|
|
Loading…
Reference in a new issue