From: Serge Rehbinder Date: Tue, 10 Jan 2017 09:46:37 +0000 (+0100) Subject: package bug fix X-Git-Tag: 5.0.0a1~38^2~24 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=efdc5b02dd49956632c2ba4ac24665d72e19c454;p=tools%2Fsat.git package bug fix --- diff --git a/commands/package.py b/commands/package.py index 35a6fc1..69c079c 100644 --- a/commands/package.py +++ b/commands/package.py @@ -963,12 +963,13 @@ def run(args, runner, logger): d_files_to_add["README"] = (local_readme_tmp_path, "README") # Add the additional files of option add_files - for file_path in options.add_files: - if not os.path.exists(file_path): - msg = _("WARNING: the file %s is not accessible.\n" % file_path) - continue - file_name = os.path.basename(file_path) - d_files_to_add[file_name] = (file_path, file_name) + if options.add_files: + for file_path in options.add_files: + if not os.path.exists(file_path): + msg = _("WARNING: the file %s is not accessible.\n" % file_path) + continue + file_name = os.path.basename(file_path) + d_files_to_add[file_name] = (file_path, file_name) logger.write("\n", 2)