diff options
Diffstat (limited to 'Upgrading.md')
-rw-r--r-- | Upgrading.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Upgrading.md b/Upgrading.md index ee77535..b5b4708 100644 --- a/Upgrading.md +++ b/Upgrading.md @@ -46,7 +46,7 @@ When rsync is finished, it will leave an empty directory tree in `/old`. A safe find /old -type d -delete ``` -This is safer than `rm -R` because it will only remove directories and error out if any files are left behind. Note that it will also try to delete the mountpoint `/old` and fail at doing so. This is expected: +This is safer than `rm -R` because it will only remove directories and error out if any files are left behind. Note that it will also try to delete the mountpoint `/old` and fail at doing so. This is expected, ``` find: cannot delete ‘/old’: Device or resource busy ``` |