fixes bug 311439 "partial updates have truncated update.manifest" r=chase

This commit is contained in:
darin%meer.net 2005-10-07 00:44:41 +00:00
parent c644049326
commit 2f11a9cb7d

View File

@ -85,5 +85,8 @@ append_remove_instructions() {
# Skip the channel-prefs.js file as it should not be included in any
# generated MAR files (see bug 306077).
list_files() {
find . -type f ! -name "channel-prefs.js" | sed 's/\.\/\(.*\)/"\1"/'
find . -type f \
! -name "channel-prefs.js" \
! -name "update.manifest" \
| sed 's/\.\/\(.*\)/"\1"/'
}