Fixing the file path

The first script was saving the backup file under the Dropbox folder.
That's not a good idea, as my Dropbox has a limited space and phone
backups has about 8GB of data.
This commit is contained in:
Bruno F. Fontes 2019-04-13 20:59:28 -03:00
parent f06d59da1f
commit ab9a092193
Signed by: brunofontes
GPG Key ID: EE3447CE80048495
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
adb backup -apk -shared -all -f /home/bruno/Documents/Dropbox/Backups/android_backup.ab && kdialog --title "Android Backup Complete" --msgbox "Android Backup finished successfully"
adb backup -apk -shared -all -f /run/media/bruno/Multimedia/My\ Backups/android_backup.ab && kdialog --title "Android Backup Complete" --msgbox "Android Backup finished successfully"

View File

@ -1 +1 @@
adb restore /home/bruno/Documents/Dropbox/Backups/android_backup.ab && kdialog --title "Android Restore Complete" --msgbox "Android Restore finished successfully"
adb restore /run/media/bruno/Multimedia/My\ Backups/android_backup.ab && kdialog --title "Android Restore Complete" --msgbox "Android Restore finished successfully"