We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ad8fc6 commit 81e4482Copy full SHA for 81e4482
1 file changed
Makefile
@@ -49,14 +49,16 @@ else
49
endif
50
51
smoke-test:
52
- @if [ -f credentials.json ]; then \
53
- go run ./... translations list -c credentials.json; \
54
- fi
+ifneq (,$(wildcard credentials.json))
+ go run ./... translations list -c credentials.json
+endif
55
+ @exit 0
56
57
verify-version:
58
ifneq ($(TOOL_VERSION),$(MOD_VERSION))
59
@echo 'Mismatched go versions'
60
@exit 1
61
62
63
64
test: verify-version tidy unit-tests smoke-test
0 commit comments