Skip to content

Commit 6962f1e

Browse files
committed
ah why didn't you say its powershell
1 parent 40af9a7 commit 6962f1e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ runs:
1818
- run: |
1919
command="ipy ${{ github.action_path }}/componentize.py ${{ inputs.source }} ${{ inputs.target }} --ghio ./lib"
2020
prefix="${{ inputs.prefix }}"
21-
if [[ -n "$prefix" ]]; then
21+
if( $null -ne $prefix )
22+
{
2223
command="$command --prefix $prefix"
23-
fi
24+
}
2425
$command
2526
shell: pwsh
2627
branding:

0 commit comments

Comments
 (0)