diff options
author | Daniel Baumann <daniel@debian.org> | 2013-02-08 23:13:06 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-06 14:50:05 +0200 |
commit | 7595fb6f61070c22b52c807c093861117ae673f5 (patch) | |
tree | 884509147eaac1978dc302c5c021aa085d541af7 /scripts/build/clean | |
parent | 516cf8299f1a2f590ad90a10cd2d991c230262e3 (diff) | |
download | vyos-live-build-7595fb6f61070c22b52c807c093861117ae673f5.tar.gz vyos-live-build-7595fb6f61070c22b52c807c093861117ae673f5.zip |
Correctly remove binary contents and packages file in clean script.
Diffstat (limited to 'scripts/build/clean')
-rwxr-xr-x | scripts/build/clean | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/clean b/scripts/build/clean index bf5e42f23..3c0f35f75 100755 --- a/scripts/build/clean +++ b/scripts/build/clean @@ -102,7 +102,7 @@ do rm -f ${LIVE_IMAGE_NAME}*.tar.gz rm -f ${LIVE_IMAGE_NAME}*.zsync* rm -f ${LIVE_IMAGE_NAME}.sh - rm -f ${LIVE_IMAGE_NAME}.contents ${LIVE_IMAGE_NAME}.packages + rm -f ${LIVE_IMAGE_NAME}*.contents ${LIVE_IMAGE_NAME}*.packages rm -f MD5SUMS SHA1SUMS SHA256SUMS SHA512SUMS rm -f md5sum.txt sha1sum.txt sha256sum.txt sha512sum.txt |