mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-03-21 17:34:42 -05:00
11 lines
185 B
Bash
Executable File
11 lines
185 B
Bash
Executable File
#!/bin/sh
|
|
infile="$1"
|
|
outfile="data/$(basename "$infile" .bin)_lz10.bin"
|
|
if [ "$infile" -nt "$outfile" ]; then
|
|
gbalzss e "$infile" "$outfile"
|
|
echo -n "C"
|
|
else
|
|
echo -n "S"
|
|
fi
|
|
|