5 lines
169 B
Bash
5 lines
169 B
Bash
#!/bin/bash
|
|
set -e
|
|
if [ -z ${SEGATOOLS_CARDID+x} ]; then echo "Segatools Card ID not set, skipping."; else
|
|
echo $SEGATOOLS_CARDID > $dir/game/bin/DEVICE/aime.txt
|
|
fi
|