Skip to content

Commit

Permalink
actions: try using Windows style path for GYB on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jay0lee authored May 3, 2024
1 parent 7f7ab94 commit c20e659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ jobs:
echo "gybpath=$(${realpath} ./gyb/)" >> $GITHUB_ENV
gyb=$(${realpath} ./gyb/gyb)
if [[ "${RUNNER_OS}" == "Windows" ]]; then
gyb+=".exe"
gyb=$(cygpath -w "$gyb")
fi
echo "gyb=${gyb}" >> $GITHUB_ENV
echo -e "GYB: ${gyb}\nGYBPATH: ${gybpath}"
Expand Down

0 comments on commit c20e659

Please sign in to comment.