diff options
Diffstat (limited to 'components/bootstrap_hooks')
-rwxr-xr-x | components/bootstrap_hooks | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/bootstrap_hooks b/components/bootstrap_hooks index 5162cdb5d..57b0e71f9 100755 --- a/components/bootstrap_hooks +++ b/components/bootstrap_hooks @@ -84,7 +84,7 @@ def main(): if verbose: print('I: Copying config/hooks/*.hook.bootstrap to chroot/live-build') - os.link(hook, os.path.join('chroot/live-build/' + os.path.basename(hook)), follow_symlinks=True) + shutil.copy(hook, os.path.join('chroot/live-build/' + os.path.basename(hook)), follow_symlinks=True) if verbose: print('I: Executing \' ' + hook + '\'') |