Skip to content

Commit 6e96298

Browse files
committed
Fix echos in Makefile
1 parent 93272ef commit 6e96298

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ clean:
1010

1111
test: ENV=test
1212
test:
13-
@echo "Running tests of version ${VERSION}... in ${ENV} environment"
13+
@echo "Running tests of version ${VERSION} in ${ENV} environment..."
1414
@./gradlew test -Penv=${ENV}
1515

1616
acceptance: ENV=test
1717
acceptance:
18-
@echo "Running acceptance tests of version ${VERSION} in ${ENV} environment"
18+
@echo "Running acceptance tests of version ${VERSION} in ${ENV} environment..."
1919
@./gradlew acceptanceTest -Penv=${ENV}
2020

2121
build: ENV=test
@@ -26,7 +26,7 @@ build:
2626
run: ENV=dev
2727
run: PORT=8080
2828
run:
29-
@echo "Starting server version ${VERSION}... in ${ENV} environment"
29+
@echo "Starting server version ${VERSION} in ${ENV} environment..."
3030
@./gradlew run --args="-e ${ENV} -p ${PORT}"
3131

3232
docker-image:

0 commit comments

Comments
 (0)