Skip to content

Commit

Permalink
~
Browse files Browse the repository at this point in the history
  • Loading branch information
boozook committed Jun 27, 2024
1 parent 809a957 commit f738147
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,11 @@ runs:
run: |
echo "version=$(cat $PLAYDATE_SDK_PATH/VERSION.txt)" >> $GITHUB_OUTPUT
# ${{ (runner.os == 'Windows' && inputs.root-win-path != 'false') && 'echo "root=$(cygpath -w "$PLAYDATE_SDK_PATH")" >> $GITHUB_OUTPUT' }}
if [ ${{ runner.os == 'Windows' }} ] && [ ${{ inputs.root-win-path }} ] then
if [ ${{ runner.os == 'Windows' }} ] && [ ${{ inputs.root-win-path }} ];
then
PLAYDATE_SDK_PATH=$(cygpath -w "$PLAYDATE_SDK_PATH")
echo "fix root path"
else
# echo "root=$(cygpath -w '$PLAYDATE_SDK_PATH')" >> $GITHUB_OUTPUT
fi
echo "root=$PLAYDATE_SDK_PATH" >> $GITHUB_OUTPUT
echo "set root to $PLAYDATE_SDK_PATH"
Expand Down

0 comments on commit f738147

Please sign in to comment.