Skip to content

Commit

Permalink
Fix conditional statement in colcon_test action in windows (#88)
Browse files Browse the repository at this point in the history
Signed-off-by: Irene Bandera <[email protected]>
  • Loading branch information
irenebm authored Apr 12, 2024
1 parent 96195b8 commit 1ad2f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion windows/colcon_test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ runs:
Write-Host "::group::Run tests using colcon"
if ([string]::IsNullOrEmpty("${{ inputs.workspace_dependencies }}")) {
if (! [string]::IsNullOrEmpty("${{ inputs.workspace_dependencies }}")) {
${{ inputs.workspace_dependencies }}/setup.ps1
}
Expand Down

0 comments on commit 1ad2f01

Please sign in to comment.