1
0
mirror of https://github.com/konpa/devicon.git synced 2025-08-11 17:14:27 +02:00

Updated file names in check_svgs_on_pr

This commit is contained in:
Thomas Bui
2021-01-08 15:53:42 -08:00
parent b1922925b7
commit c9b19346b2
6 changed files with 26 additions and 18 deletions

View File

@@ -45,8 +45,12 @@ def get_check_svgs_on_pr_args():
Get the commandline arguments for the check_svgs_on_pr.py.
"""
parser = ArgumentParser(description="Check the SVGs to ensure their attributes are correct. Run whenever a PR is opened")
parser.add_argument("files_changed_json_path",
help="The path to the files.json created by the gh-action-get-changed-files@2.1.4",
parser.add_argument("files_added_json_path",
help="The path to the files_added.json created by the gh-action-get-changed-files@2.1.4",
action=PathResolverAction)
parser.add_argument("files_modified_json_path",
help="The path to the files_modified.json created by the gh-action-get-changed-files@2.1.4",
action=PathResolverAction)
return parser.parse_args()