summaryrefslogtreecommitdiff
path: root/bin
diff options
authorstanley31 <stanley.huang@canonical.com>2020-07-01 18:32:37 +0800
committerstanley31 <stanley.huang@canonical.com>2020-07-01 18:32:37 +0800
commit29e43f872d9f9726db34ae75a905043f3fc73acc (patch)
tree073499d78d58b766130ffa7a15fe0baa30d595b4 /bin
parentdb58a899837a943991956b98749f7bb40ab994f4 (diff)
fixed the typo to unmount disk
Diffstat (limited to 'bin')
-rwxr-xr-xbin/storage_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/storage_test.py b/bin/storage_test.py
index 1481a0d..9efe41f 100755
--- a/bin/storage_test.py
+++ b/bin/storage_test.py
@@ -45,7 +45,7 @@ def mount(source, target):
def unmount(target):
- cmd = 'unmount {}'.format(target)
+ cmd = 'umount {}'.format(target)
print('+', cmd, flush=True)
sp.check_call(cmd, shell=True)