diff options
-rwxr-xr-x | components/binary-hooks | 2 | ||||
-rwxr-xr-x | components/bootstrap-hooks | 2 | ||||
-rwxr-xr-x | components/chroot-hooks | 2 | ||||
-rwxr-xr-x | components/source-hooks | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/components/binary-hooks b/components/binary-hooks index 20c5c0190..a0fc66aaa 100755 --- a/components/binary-hooks +++ b/components/binary-hooks @@ -93,7 +93,7 @@ def main(): exec_hook = subprocess.check_call('cd binary && live-build/' + os.path.basename(hook), shell=True) os.remove('binary/live-build/' + os.path.basename(hook)) - # unmount coniguration directory + # unmount configuration directory umount = subprocess.check_call('umount binary/live-build/config', shell=True) os.rmdir('binary/live-build/config') diff --git a/components/bootstrap-hooks b/components/bootstrap-hooks index 694d66b95..9c9250ec0 100755 --- a/components/bootstrap-hooks +++ b/components/bootstrap-hooks @@ -93,7 +93,7 @@ def main(): exec_hook = subprocess.check_call('chroot chroot /live-build/' + os.path.basename(hook), shell=True) os.remove('chroot/live-build/' + os.path.basename(hook)) - # unmount coniguration directory + # unmount configuration directory umount = subprocess.check_call('umount chroot/live-build/config', shell=True) os.rmdir('chroot/live-build/config') diff --git a/components/chroot-hooks b/components/chroot-hooks index 6d973afea..46ce6e247 100755 --- a/components/chroot-hooks +++ b/components/chroot-hooks @@ -93,7 +93,7 @@ def main(): exec_hook = subprocess.check_call('chroot chroot /live-build/' + os.path.basename(hook), shell=True) os.remove('chroot/live-build/' + os.path.basename(hook)) - # unmount coniguration directory + # unmount configuration directory umount = subprocess.check_call('umount chroot/live-build/config', shell=True) os.rmdir('chroot/live-build/config') diff --git a/components/source-hooks b/components/source-hooks index 552e228da..0766ea70b 100755 --- a/components/source-hooks +++ b/components/source-hooks @@ -93,7 +93,7 @@ def main(): exec_hook = subprocess.check_call('cd source && live-build/' + os.path.basename(hook), shell=True) os.remove('source/live-build/' + os.path.basename(hook)) - # unmount coniguration directory + # unmount configuration directory umount = subprocess.check_call('umount source/live-build/config', shell=True) os.rmdir('source/live-build/config') |