Skip to content

Commit 5885502

Browse files
author
Salvador Santoluctio
committed
make args work on Linux
1 parent ac943ab commit 5885502

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

labview_fpga_hdl_tools/__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,8 @@ def handle_exception(e):
194194

195195
def main():
196196
"""Main entry point for the command-line interface."""
197-
return cli(standalone_mode=False)
197+
print(f"DEBUG: Arguments received: {sys.argv[1:]}")
198+
return cli(args=sys.argv[1:], standalone_mode=False)
198199

199200

200201
if __name__ == "__main__":

0 commit comments

Comments
 (0)