Skip to content

Commit

Permalink
Fix gradle.yml syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
cuttestkittensrule authored Aug 25, 2024
1 parent 42123fa commit c1655a4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ jobs:
uses: gradle/gradle-build-action@v2
- name: Ensure LF
working-directory: Robot2024
run: set -o xtrace
\ tr -d '\015' < "gradlew">"gradlew.temp"
\ rm -f "gradlew"
\ mv "gradlew.temp" "gradlew"
run: |
set -o xtrace
tr -d '\015' < "gradlew">"gradlew.temp"
m -f "gradlew"
mv "gradlew.temp" "gradlew"
- name: Run build with Gradle Wrapper
working-directory: Robot2024
run: ./gradlew build

0 comments on commit c1655a4

Please sign in to comment.