Skip to content

Commit

Permalink
Fix sed
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy committed Oct 20, 2023
1 parent 4597439 commit 709dbc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ runs:
run: |
cat ${{ runner.temp }}/plugin-check-results.txt
echo $PLUGIN_DIR
RELATIVE_DIR=$(echo $PLUGIN_DIR | sed s/"$GITHUB_WORKSPACE"//)
RELATIVE_DIR=$(echo $PLUGIN_DIR | sed "s@$GITHUB_WORKSPACE@@g")
echo $RELATIVE_DIR
node dist/index.js ${{ runner.temp }}/plugin-check-results.txt $RELATIVE_DIR
shell: bash
Expand Down

0 comments on commit 709dbc8

Please sign in to comment.