Skip to content

Commit

Permalink
Fix typo with mod persistent storage
Browse files Browse the repository at this point in the history
Directory is `SaveGames`, not `SavedGames`
  • Loading branch information
klightspeed authored May 11, 2020
1 parent e5321d4 commit 3b7709e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/arkmanager
Original file line number Diff line number Diff line change
Expand Up @@ -3021,9 +3021,9 @@ doBackup(){
fi
done
if [ -d "${saverootdir}/SavedGames" ]; then
if [ -d "${saverootdir}/SaveGames" ]; then
echo -e "${NORMAL} Copying mod persistent info "
cp -av "${saverootdir}/SavedGames" "${backupdir}/SavedGames"
cp -av "${saverootdir}/SaveGames" "${backupdir}/SaveGames"
fi
# ARK server uses Lock-Truncate-Write-Unlock
Expand Down

0 comments on commit 3b7709e

Please sign in to comment.