Skip to content

Commit

Permalink
bug fix - wrap string in quotes for PS expression
Browse files Browse the repository at this point in the history
  • Loading branch information
jimkring committed Jul 28, 2022
1 parent c38efca commit 986e38b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ runs:
if ("${{ inputs.output-dir }}" -ne ''){
$args += @('--output-dir="${{ inputs.output-dir }}"')
}
$plugins = (${{ inputs.enable-plugins }} -split '\s*,\s*')
$plugins = ("${{ inputs.enable-plugins }}" -split '\s*,\s*')
foreach ($plugin in $plugins) {
$args += @('--enable-plugin=${plugin}');
}
Expand All @@ -162,7 +162,7 @@ runs:
run: |
ARGS=""
SPACE=" "
if [ "${{ inputs.access-token }}" != "" ]; then
if [ "${{ inputs.access-token }}" != "" ]; then
pip install -e "git+https://${{ inputs.access-token }}@github.com/Nuitka/Nuitka-commercial.git@cfea7b47ca1c237341c4a334d4ff239c7c3fa472#egg=nuitka"
fi
if [ "${{ inputs.module }}" != "${{ false }}" ]; then
Expand Down

0 comments on commit 986e38b

Please sign in to comment.