Skip to content

Commit 153e9a4

Browse files
Fix missing arg in generator
Fixes missing av arg
1 parent b63583a commit 153e9a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

generator/generate_library.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ def main(inputs):
752752
is_github_action = False
753753

754754
try:
755-
opts, args = getopt.getopt(inputs, "ho:k:v:g:")
755+
opts, args = getopt.getopt(inputs, "ho:k:v:av:g:")
756756
except getopt.GetoptError:
757757
print_help()
758758
sys.exit(2)

0 commit comments

Comments
 (0)