Skip to content

Commit

Permalink
Add missing line continuation, don't quote
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems committed Dec 23, 2023
1 parent b6264fd commit 308dff2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ runs:
--dist-dir "$dist_dir" \
--warnings "$warnings" \
${{ join(fromJSON(steps.args.outputs.arch), ' ') }} \
${{ join(fromJSON(steps.args.outputs.package), ' ') }}
${{ join(fromJSON(steps.args.outputs.package), ' ') }} \
${{ join(fromJSON(steps.args.outputs.hook), ' ') }}
env:
package_dir: ${{ inputs.path }}
Expand Down
2 changes: 1 addition & 1 deletion src/args.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ toFlagsArray() {
echo "$2" | prepend "--${1}" | toArray
}
setOutputVar() {
echo "${1}='$2'" | tee -a "$GITHUB_OUTPUT"
echo "${1}=$2" | tee -a "$GITHUB_OUTPUT"
}


Expand Down

0 comments on commit 308dff2

Please sign in to comment.