bug fixes

Made the script run again. This update fixes the MODS_PATH issue.
This commit is contained in:
Nathan Salapat 2014-10-08 21:08:29 -05:00
parent b2ddc4c6b0
commit b221d2c4de

View File

@ -2,11 +2,12 @@
#This script should pull a list of the directories in the parent folder, cd into each folder issue the Git Update command, update the files, move back to the parent directory and repeat until all files have been updated, then copy the files to the main mod directory.
# Path to the directory with mods
MODS_PATH=.
#Move to the parent directory so the script can self update.
#Move up to parent folder
cd ..
#Grab the path of the root folder all mods are in.
MODS_PATH=`pwd`
find $MODS_PATH -maxdepth 1 -type d -print0 | while read -d $'\0' dir
do
echo "$dir" #Prints the current directory, useful for debugging and logs, pointless right now.