mirror of
https://github.com/pleonex/NitroFilcher.git
synced 2025-06-18 13:15:33 -04:00
11 lines
212 B
Bash
Executable File
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"
|