-
-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wiki: Added rsync command to backup former files during the update #1246
base: main
Are you sure you want to change the base?
Conversation
@@ -56,6 +56,10 @@ please **make sure to create in-game saves** before upgrading. | |||
```sh | |||
cp -rf Onion-v4.2.0/* /run/media/mmcblk0p1 | |||
``` | |||
NOTE: Optionally, instead of the command above, if you wish to backup the files that should be overwritten by the updated ones you can run this command instead (repleace the palceolder paths with the actual paths): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
placeholder*
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace*
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HA! Didn't even see that 😅
@@ -56,6 +56,10 @@ please **make sure to create in-game saves** before upgrading. | |||
```sh | |||
cp -rf Onion-v4.2.0/* /run/media/mmcblk0p1 | |||
``` | |||
NOTE: Optionally, instead of the command above, if you wish to backup the files that should be overwritten by the updated ones you can run this command instead (repleace the palceolder paths with the actual paths): | |||
```sh | |||
rsync -av --remove-source-files --backup --backup-dir=onion-backup Onion-v4.2.0/ /run/media/mmcblk0p1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't using --remove-source-files
more like a move?
I explained the option to backup the files before they get overwritten by the update process in case the user encounters some issues during the upgrade process.