Skip to content

Commit

Permalink
Removes brackets in if expression
Browse files Browse the repository at this point in the history
  • Loading branch information
XComp committed Jun 19, 2024
1 parent 4249b74 commit 35f52b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mavenwrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
./mvnw
./mvnw.cmd
- name: Check Maven version in Unix-based systems
if: ${{ matrix.os != "windows-latest" }}
if: matrix.os != "windows-latest"
run: ./mvnw version
- name: Check Maven version in Windows
if: ${{ matrix.os == "windows-latest" }}
if: matrix.os == "windows-latest"
run: ./mvnw.cmd version

0 comments on commit 35f52b6

Please sign in to comment.