Merge pull request #1 from donat-b/master

Check if rename.sh exists and run it in the same process
master
Nathan Salapat 2014-10-08 13:50:56 -05:00
commit 6acd9259e9
1 changed files with 3 additions and 1 deletions

View File

@ -22,4 +22,6 @@ rsync -r '' ~/.minetest/mods
cd ~/.minetest/mods
#Run an external script to find out which files to rename and do it.
sh ./rename.sh
if [[ -f ./rename.sh ]]; then
exec ./rename.sh
fi