diff options
author | Daniel Baumann <daniel@debian.org> | 2011-07-21 17:06:54 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-07-21 17:06:54 +0200 |
commit | 0aab94aac9a07f450dd69e7897428b28c27879a4 (patch) | |
tree | e69680ace2844e2c3c0905cf6c219dc2c78f4e85 /scripts/build/lb_binary_disk | |
parent | 0d2cc22efc66e919848fe0b6559e5b59b08e0afa (diff) | |
download | vyos-live-build-0aab94aac9a07f450dd69e7897428b28c27879a4.tar.gz vyos-live-build-0aab94aac9a07f450dd69e7897428b28c27879a4.zip |
Calling mkdir with -p to avoid build failures with multiple kernels on disk info in ubuntu mode, thanks to Cody A.W. Somerville <cody.somerville@canonical.com>.
Diffstat (limited to 'scripts/build/lb_binary_disk')
-rwxr-xr-x | scripts/build/lb_binary_disk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/lb_binary_disk b/scripts/build/lb_binary_disk index a28a0fe92..b592b889e 100755 --- a/scripts/build/lb_binary_disk +++ b/scripts/build/lb_binary_disk @@ -88,7 +88,7 @@ case "${LB_INITRAMFS}" in casper) for INITRD in binary/casper/initrd.img* do - mkdir uuid + mkdir -p uuid cd uuid zcat "../${INITRD}" | cpio --quiet -id conf/uuid.conf |