Skip to content

Commit d49ada1

Browse files
committed
add init target to update gradlew based on user gradle version
1 parent 57f1420 commit d49ada1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
.PHONY: build
22

3-
all: clean build test readme doc
3+
all: clean init build test readme doc
44

55
# clean
66
clean:
77
./gradlew clean
88

9+
# Initialize gradle wrapper
10+
init:
11+
gradle wrapper
12+
chmod +x ./gradlew
13+
914
# Run gradle test with information
1015
test:
1116
./gradlew test --info

0 commit comments

Comments
 (0)