diff options
Diffstat (limited to 'components/binary-includes')
-rwxr-xr-x | components/binary-includes | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/binary-includes b/components/binary-includes index a18d508ea..5b829aeba 100755 --- a/components/binary-includes +++ b/components/binary-includes @@ -84,13 +84,13 @@ def main(): if verbose: print('I: Copying config/includes to binary') - cpio = subprocess.call('cd config/includes && find . | cpio -dmpu --no-preserve-owner ../../binary', shell=True) + cpio = subprocess.check_call('cd config/includes && find . | cpio -dmpu --no-preserve-owner ../../binary', shell=True) if glob.glob('config/includes.binary/*') or glob.glob('config/includes.binary/.*'): if verbose: print('I: Copying config/includes.binary to binary') - cpio = subprocess.call('cd config/includes.binary && find . | cpio -dmpu --no-preserve-owner ../../binary', shell=True) + cpio = subprocess.check_call('cd config/includes.binary && find . | cpio -dmpu --no-preserve-owner ../../binary', shell=True) # stagefile os.makedirs('.build', exist_ok=True) |