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
Родитель 5b937cede8
Коммит 41cb843e90
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -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"/'
}