diff options
-rwxr-xr-x | components/binary_hooks | 2 | ||||
-rwxr-xr-x | components/bootstrap_cdebootstrap | 2 | ||||
-rwxr-xr-x | components/bootstrap_debootstrap | 2 | ||||
-rwxr-xr-x | components/bootstrap_hooks | 4 | ||||
-rwxr-xr-x | components/chroot_hooks | 4 | ||||
-rwxr-xr-x | components/source_hooks | 4 |
6 files changed, 9 insertions, 9 deletions
diff --git a/components/binary_hooks b/components/binary_hooks index cea8903f4..7dc7b19bf 100755 --- a/components/binary_hooks +++ b/components/binary_hooks @@ -41,7 +41,7 @@ def main(): # --verbose verbose = args.verbose - ## Executing hooks + ## Calling binary hooks # stagefile if os.path.isfile('.build/binary_hooks'): diff --git a/components/bootstrap_cdebootstrap b/components/bootstrap_cdebootstrap index 3ac2b95d6..6ab7b21b5 100755 --- a/components/bootstrap_cdebootstrap +++ b/components/bootstrap_cdebootstrap @@ -174,7 +174,7 @@ def main(): # * there's no Python equivalent to 'cp -a' that handels both symlinks and device nodes properly. cache = subprocess.call('cp -a chroot cache/bootstrap', shell=True) - ## stagefile + # stagefile os.makedirs('.build', exist_ok=True) open('.build/bootstrap', 'w').close() diff --git a/components/bootstrap_debootstrap b/components/bootstrap_debootstrap index 0d76d627d..dbf1f4cbe 100755 --- a/components/bootstrap_debootstrap +++ b/components/bootstrap_debootstrap @@ -171,7 +171,7 @@ def main(): # * there's no Python equivalent to 'cp -a' that handels both symlinks and device nodes properly. cache = subprocess.call('cp -a chroot cache/bootstrap', shell=True) - ## stagefile + # stagefile os.makedirs('.build', exist_ok=True) open('.build/bootstrap', 'w').close() diff --git a/components/bootstrap_hooks b/components/bootstrap_hooks index 57b0e71f9..f74ecbcee 100755 --- a/components/bootstrap_hooks +++ b/components/bootstrap_hooks @@ -41,7 +41,7 @@ def main(): # --verbose verbose = args.verbose - ## Executing hooks + ## Calling bootstrap hooks # stagefile if os.path.isfile('.build/bootstrap_hooks'): @@ -99,7 +99,7 @@ def main(): os.rmdir('chroot/live-build/config') os.rmdir('chroot/live-build') - ## stagefile + # stagefile os.makedirs('.build', exist_ok=True) open('.build/bootstrap_hooks', 'w').close() diff --git a/components/chroot_hooks b/components/chroot_hooks index cf000cd95..653e95379 100755 --- a/components/chroot_hooks +++ b/components/chroot_hooks @@ -41,7 +41,7 @@ def main(): # --verbose verbose = args.verbose - ## Executing hooks + ## Calling chroot hooks # stagefile if os.path.isfile('.build/chroot_hooks'): @@ -99,7 +99,7 @@ def main(): os.rmdir('chroot/live-build/config') os.rmdir('chroot/live-build') - ## stagefile + # stagefile os.makedirs('.build', exist_ok=True) open('.build/chroot_hooks', 'w').close() diff --git a/components/source_hooks b/components/source_hooks index f057b7f60..fdb87cebc 100755 --- a/components/source_hooks +++ b/components/source_hooks @@ -41,7 +41,7 @@ def main(): # --verbose verbose = args.verbose - ## Executing hooks + ## Calling source hooks # stagefile if os.path.isfile('.build/source_hooks'): @@ -99,7 +99,7 @@ def main(): os.rmdir('source/live-build/config') os.rmdir('source/live-build') - ## stagefile + # stagefile os.makedirs('.build', exist_ok=True) open('.build/source_hooks', 'w').close() |