Skip to content

Commit

Permalink
[fix] use ./gradlew script rather than gradle system command
Browse files Browse the repository at this point in the history
  • Loading branch information
funa-tk committed Oct 26, 2021
1 parent 90d0db3 commit c80d53e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: gradle dependencies
- run: ./gradlew dependencies

- save_cache:
paths:
- ~/.gradle
key: v1-dependencies-{{ checksum "build.gradle" }}

# run tests!
- run: gradle test
- run: ./gradlew test

0 comments on commit c80d53e

Please sign in to comment.