We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e5da95 commit 9a4ca86Copy full SHA for 9a4ca86
tools/fastdds/discovery/parser.py
@@ -54,16 +54,13 @@ def __init__(self, argv):
54
(len(argv) == 1 and argv[0] == '--help')
55
):
56
print(self.__edit_tool_help(result.stdout))
57
-<<<<<<< HEAD
58
-=======
59
elif (
60
(len(argv) == 1 and argv[0] == '-v') or
61
(len(argv) == 1 and argv[0] == '--version')
62
63
result = subprocess.run([tool_path, '-v'])
64
if result.returncode != 0:
65
sys.exit(result.returncode)
66
->>>>>>> 2cdc2d96 (Fix Discovery CLI Tool in Windows (#5493))
67
else:
68
# Call the tool
69
result = subprocess.run([tool_path] + argv)
0 commit comments