From b99a4a6381b2ac004e98c93bd96d7b6a137a4820 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 23 Nov 2016 09:28:33 -0800 Subject: [PATCH] create-filelist: also skip the imagelist when making others add the imagelist's name to skip_files as we do for the other two files. tibbs is committing the same change to upstream. --- files/scripts/create-filelist | 2 ++ 1 file changed, 2 insertions(+) diff --git a/files/scripts/create-filelist b/files/scripts/create-filelist index fcbdea468d..3b831f8c05 100755 --- a/files/scripts/create-filelist +++ b/files/scripts/create-filelist @@ -100,6 +100,8 @@ def parseopts(): opts.skip_files += [opts.timelist.name] if not opts.filelist.name == '': opts.skip_files += [opts.filelist.name] + if not opts.imagelist.name == '': + opts.skip_files += [opts.imagelist.name] return opts