Skip to content

Commit 4a32f09

Browse files
committed
utils: fix split-cmdline
If an argument does not start with an "-", it's not necessarily an argument parameter. It can also be e.g. an input file name.
1 parent 8a689bb commit 4a32f09

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

utils/dev-scripts/split-cmdline

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ def main():
5353
continue
5454
if not first:
5555
# Print option arguments in the same line
56-
is_arg_param = is_arg_param or not arg.startswith("-")
5756
print(" " if is_arg_param else " \\\n ", end="")
5857
first = False
5958

0 commit comments

Comments
 (0)