Improve instructions for --skip-git

The user should be told they need to add relevant files before they
commit.

Signed-off-by: Matthew Johnson <matthew.johnson@intel.com>
This commit is contained in:
Matthew Johnson
2018-01-19 14:44:33 -08:00
parent 74beaf87e9
commit c435dff164
+2 -1
View File
@@ -352,7 +352,8 @@ def package(args, url, name, archives, workingdir, infile_dict):
if args.git:
git.commit_to_git(build.download_path)
else:
print("To commit your changes, run 'git commit -F commitmsg'")
print("To commit your changes, git add the relevant files and "
"run 'git commit -F commitmsg'")
if __name__ == '__main__':