diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-09-08 12:25:37 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-09-08 12:29:28 +0200 |
commit | 083c385e8016ac33b3f82c86c40a03e26ad48a3c (patch) | |
tree | 1ba6c95e8f3d86e8b3607b44afe05398cd43bacd /snapshot | |
parent | e267612dc5095a0aa37b8a7320d8ca071447fd5c (diff) | |
download | bin-083c385e8016ac33b3f82c86c40a03e26ad48a3c.tar.xz |
snapshot: Fix sucess/failure message typoes
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'snapshot')
-rwxr-xr-x | snapshot | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,8 +5,8 @@ create_snapshot() { local to="$2"/"$(date +%Y-%m-%dT%H:%M:%S%z)" sudo mkdir "$to" sudo btrfs subvolume snapshot -r "$from" "$to" && - printf "==> Successfully created a snaphot of %s in %s\n" "$from" "$to" || - printf "==> Failet to create a snaphot of %s in %s\n" "$from" "$to" + printf "==> Successfully created a snapshot of %s in %s\n" "$from" "$to" || + printf "==> Failed to create a snapshot of %s in %s\n" "$from" "$to" } |