Revert get_config.py make.py test.py

pull/9401/head
Garrett 2019-01-16 16:24:28 -05:00 committed by Garrett LoVerde
parent 31615eb542
commit fc968e6cef
3 changed files with 0 additions and 17 deletions

View File

@ -39,11 +39,6 @@ if __name__ == '__main__':
"--source", dest="source_dir", type=argparse_filestring_type,
required=True, default=[], help="The source (input) directory",
action="append")
parser.add_argument(
"--custom-targets", dest="custom_targets_directory",
type=argparse_filestring_type, default=[],
help="Specify directory containing custom_targets.json",
action="append")
parser.add_argument(
"--prefix", dest="prefix", action="append", default=[],
help="Restrict listing to parameters that have this prefix")

View File

@ -202,14 +202,6 @@ if __name__ == '__main__':
action="append",
help="The source (input) directory"
)
parser.add_argument(
"--custom-targets",
dest="custom_targets_directory",
type=argparse_filestring_type,
default=None,
action="append",
help="Specify directory containing custom_targets.json"
)
parser.add_argument(
"--duration",
type=int,

View File

@ -65,10 +65,6 @@ if __name__ == '__main__':
type=argparse_filestring_type,
default=None, help="The source (input) directory (for sources other than tests). Defaults to current directory.", action="append")
parser.add_argument("--custom-targets", dest="custom_targets_directory",
type=argparse_filestring_type,
default=None, help="Specify directory containing custom_targets.json", action="append")
parser.add_argument("--build", dest="build_dir", type=argparse_dir_not_parent(ROOT),
default=None, help="The build (output) directory")