Skip to content

Commit

Permalink
Refs #22463: Apply suggestions
Browse files Browse the repository at this point in the history
Signed-off-by: cferreiragonz <[email protected]>
  • Loading branch information
cferreiragonz committed Dec 17, 2024
1 parent 1a5cf4e commit aff74bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-mac-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Install Python dependencies
uses: eProsima/eProsima-CI/multiplatform/install_python_packages@v0
with:
packages: vcstool xmlschema
packages: vcstool xmlschema psutil
upgrade: false

- name: Setup CCache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
- name: Install Python dependencies
uses: eProsima/eProsima-CI/windows/install_python_packages@v0
with:
packages: vcstool xmlschema
packages: vcstool xmlschema psutil

- name: Update known hosts file for DNS resolver testing
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-test') }}
Expand Down
3 changes: 1 addition & 2 deletions tools/fastdds/discovery/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def __init__(self, argv):
):
print(self.__edit_tool_help(result.stdout))
elif (
(len(argv) == 1 and argv[0] == '-v') or
(len(argv) == 1 and argv[0] == '-v') or
(len(argv) == 1 and argv[0] == '--version')
):
result = subprocess.run([tool_path, '-v'])
Expand Down Expand Up @@ -99,7 +99,6 @@ def __find_tool_path(self):
print("Unable to find fast-discovery-server tool. Check installation")
elif len(exe_files) == 1:
ret = exe_files[0]
print(f'[PYTHON] Found executable: {ret}')
else:
print('Multiple candidates for fast-discovery-server.exe. Check installation')
sys.exit(1)
Expand Down

0 comments on commit aff74bc

Please sign in to comment.