NitroFilcher/create_patch.sh
2016-02-29 14:12:35 +01:00

11 lines
212 B
Bash
Executable File

#!/bin/bash
if [[ -z "$1" ]]; then
echo "The first argument must be the name of the patch."
echo "The recommended format is romID_shortGameName."
exit -1
fi
cd desmume
svn diff > "../patch_$1.diff"