Skip to content

Commit cabc4b6

Browse files
committed
Remove invalid default value for '-p' in make.py
This prevented make.py from running properly.
1 parent dfb472c commit cabc4b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workspace_tools/make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
if __name__ == '__main__':
4343
# Parse Options
4444
parser = get_default_options_parser()
45-
parser.add_option("-p", type="int", dest="program", default=-1,
45+
parser.add_option("-p", type="int", dest="program",
4646
help="The index of the desired test program: [0-%d]" % (len(TESTS)-1))
4747
parser.add_option("-n", dest="program_name",
4848
help="The name of the desired test program")

0 commit comments

Comments
 (0)