We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60818d6 commit aca92adCopy full SHA for aca92ad
Makefile
@@ -21,9 +21,11 @@ sync-docs:
21
./sync-docs.sh
22
23
test:
24
- shellcheck --version >/dev/null 2>&1 && \
25
- shellcheck -x *.sh lib/git-issue/*.sh || \
26
- echo 'Skipping shellcheck; consider installing it'
+ if shellcheck --version >/dev/null 2>&1 ; then \
+ shellcheck -x *.sh lib/git-issue/*.sh ; \
+ else \
27
+ echo 'Skipping shellcheck; consider installing it' ; \
28
+ fi
29
./test.sh
30
31
uninstall:
0 commit comments