Skip to content

Commit

Permalink
Fix always empty add-on path input (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
Poeschl authored May 25, 2021
1 parent 5ba6ea4 commit 2f3aef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ runs:
run: |
if [[ -n "${{ inputs.path }}" ]]; then
path="${{ inputs.path }}"
path="${config%/}"
path="${path%/}"
config="${path}/config.json"
if [[ ! -f "${config}" ]]; then
Expand Down

0 comments on commit 2f3aef9

Please sign in to comment.