fixed weird save dirs for fallouts
authorChris Koeritz <fred@gruntose.com>
Tue, 17 Jul 2018 20:33:16 +0000 (16:33 -0400)
committerChris Koeritz <fred@gruntose.com>
Tue, 17 Jul 2018 20:33:16 +0000 (16:33 -0400)
scripts/customize/fred/scripts/games/gamesaver.sh

index dc6956ec10e3ef467b97817264496f1c1395ee7a..764ab6c5459f59d18fb07970a6b21200a110a84b 100644 (file)
@@ -39,7 +39,7 @@ function copyem()
 }
 
 # make the output folders if they don't exist.
-for i in skyrim fallout_new_vegas fallout_3/Saves oblivion fallout_4/Saves ; do
+for i in skyrim fallout_new_vegas fallout_3 oblivion fallout_4 ; do
   if [ ! -d "$SPOOLING_OUTPUT_DIR/$i" ]; then
     mkdir -p "$SPOOLING_OUTPUT_DIR/$i"
   fi
@@ -54,10 +54,10 @@ copyem "skyrim" "$WINE_SOURCE_DIR/Skyrim/Saves" "$SPOOLING_OUTPUT_DIR/skyrim"
 
 copyem "fallout new vegas" "$WINE_SOURCE_DIR/FalloutNV/Saves" "$SPOOLING_OUTPUT_DIR/fallout_new_vegas"
 
-copyem "fallout 3" "$WINE_SOURCE_DIR/Fallout3/Saves" "$SPOOLING_OUTPUT_DIR/fallout_3/Saves"
+copyem "fallout 3" "$WINE_SOURCE_DIR/Fallout3/Saves" "$SPOOLING_OUTPUT_DIR/fallout_3"
 
 copyem "oblivion" "$WINE_SOURCE_DIR/Oblivion/Saves" "$SPOOLING_OUTPUT_DIR/oblivion/"
 
-copyem "fallout 4" "$WINE_SOURCE_DIR/Fallout4/Saves" "$SPOOLING_OUTPUT_DIR/fallout_4/Saves"
+copyem "fallout 4" "$WINE_SOURCE_DIR/Fallout4/Saves" "$SPOOLING_OUTPUT_DIR/fallout_4"