Skip to content

Commit 589ff40

Browse files
committed
utils: let split-cmdline expand @-filelist files which end with "FileList"
So far only ".txt" were handled
1 parent 4a32f09 commit 589ff40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/dev-scripts/split-cmdline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def main():
5757
first = False
5858

5959
# Expand @ option files
60-
m = re.match(r"^@(\S+\.txt)$", arg)
60+
m = re.match(r"^@(\S+(\.txt|FileList))$", arg)
6161
if m:
6262
cmd_file = m.group(1)
6363
if os.path.isfile(cmd_file):

0 commit comments

Comments
 (0)