diff options
-rwxr-xr-x | upload-machine | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/upload-machine b/upload-machine index 19544fa..556f824 100755 --- a/upload-machine +++ b/upload-machine @@ -78,8 +78,8 @@ function check_ro () # <subvol> local r; r="$(btrfs property get -ts "$1" ro)" if [ "$r" != "ro=true" ]; then - info "subvolume '$1' is not read-only" - info "to change, run: btrfs property set -ts $1 ro true" + info "subvolume '$1' is not read-only; to change, run:" + info " btrfs property set -ts $1 ro true" exit 1 fi } |