We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0337f7e + 589ff40 commit 9bedefeCopy full SHA for 9bedefe
utils/dev-scripts/split-cmdline
@@ -53,12 +53,11 @@ def main():
53
continue
54
if not first:
55
# Print option arguments in the same line
56
- is_arg_param = is_arg_param or not arg.startswith("-")
57
print(" " if is_arg_param else " \\\n ", end="")
58
first = False
59
60
# Expand @ option files
61
- m = re.match(r"^@(\S+\.txt)$", arg)
+ m = re.match(r"^@(\S+(\.txt|FileList))$", arg)
62
if m:
63
cmd_file = m.group(1)
64
if os.path.isfile(cmd_file):
0 commit comments