diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-12-15 15:55:10 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-12-15 15:55:10 +0200 |
commit | 78d4400c593e0756a49900a6e57535e880a2324a (patch) | |
tree | 9d31404c92e9ccb56c8df111af7f9dd8e5e688df | |
parent | f128f03edb9f8f275fa8ca6ec02b95bb63750eff (diff) |
Update diagnostics in upload-machine script
-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 } |