mirror of https://github.com/qTox/qTox.git
Browse Source
I tried to get it done without bash… But this was the simplest method that works for this special case scenerio.pull/2822/head
3 changed files with 19 additions and 6 deletions
@ -1,14 +1,17 @@
@@ -1,14 +1,17 @@
|
||||
#!/usr/bin/env bash |
||||
|
||||
# A qTox profile migrater for OSX |
||||
now=$(date +"%m_%d_%Y-%H.%M.%S") |
||||
bak="~/.Tox-Backup-$now" |
||||
|
||||
echo "Figuring out if action is required ..." |
||||
if [ -d ~/Library/Prefrences/tox] |
||||
if [ -d ~/Library/Preferences/tox ]; then |
||||
echo "Moving profile(s) ..." |
||||
cp -r ~/Library/Preferences/tox ~/Library/Application\ Support/ |
||||
mv ~/Library/Application\ Support/tox/ ~/Library/Application\ Support/Tox |
||||
mv ~/Library/Preferences/tox ~/.Tox-Backup |
||||
mv ~/Library/Preferences/tox ~/.Tox-Backup-$now |
||||
echo "Done! You profile(s) have been moved! A back up coppy still exists at:" |
||||
echo "~/.Tox-Backup" |
||||
echo "$bak" |
||||
else |
||||
echo "Cannot locate old profile directory, profile migration not performed" |
||||
fi |
||||
|
Loading…
Reference in new issue