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 1459bce commit af22bf9Copy full SHA for af22bf9
Makefile
@@ -12,10 +12,10 @@ cpp_wrapper: cpp_wrapper.c
12
gcc -O3 -std=c99 -Wall cpp_wrapper.c -o cpp_wrapper
13
14
check:
15
- docker run -v $(CURDIR):/mnt koalaman/shellcheck -x $(SCRIPTS)
+ docker run --rm -v $(CURDIR):/mnt koalaman/shellcheck -x $(SCRIPTS)
16
17
check-%:
18
- docker run -v $(CURDIR):/mnt koalaman/shellcheck -x $*.bash
+ docker run --rm -v $(CURDIR):/mnt koalaman/shellcheck -x $*.bash
19
20
ifeq ($(NO_TTY),y)
21
NO_TTY_ARG := --no-tty
0 commit comments