diff options
author | Daniel Baumann <daniel@debian.org> | 2012-10-01 03:42:20 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-10-01 03:42:20 +0200 |
commit | 803266d886df4228a1f7a585f5faf2c4baeff241 (patch) | |
tree | 0f8c4f4783baa28d5f853321b1e1c92edd562280 | |
parent | b18de1adeab23291fb13e2cce35d82ad37e65a15 (diff) | |
download | vyos-live-build-803266d886df4228a1f7a585f5faf2c4baeff241.tar.gz vyos-live-build-803266d886df4228a1f7a585f5faf2c4baeff241.zip |
Also use .contents suffix for file list of sources images like for binary images, rather than the old .list suffix.
-rwxr-xr-x | scripts/build/source_checksums | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/source_checksums b/scripts/build/source_checksums index cf9cce0dc..e03406473 100755 --- a/scripts/build/source_checksums +++ b/scripts/build/source_checksums @@ -83,7 +83,7 @@ EOF # File list cd ${DIRECTORY} - find . | sed -e 's|^.||g' | grep "^/" | sort > ../../$(echo ${DIRECTORY} | sed -e 's|/|.|').list + find . | sed -e 's|^.||g' | grep "^/" | sort > ../../$(echo ${DIRECTORY} | sed -e 's|/|.|').contents cd "${OLDPWD}" done |