Skip to content

Commit f2a18c3

Browse files
author
Peter Amstutz
committed
Add missing args.py used by draft-3 tests.
1 parent ac17f5d commit f2a18c3

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

draft-3/draft-3/args.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env python
2+
import sys
3+
import json
4+
import os
5+
args = [os.path.basename(a) for a in sys.argv[1:]]
6+
with open("cwl.output.json", "w") as f:
7+
json.dump({"args": args}, f)

0 commit comments

Comments
 (0)