Skip to content

Commit af22bf9

Browse files
author
Jason Mobarak
committed
Use --rm for shellcheck
1 parent 1459bce commit af22bf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ cpp_wrapper: cpp_wrapper.c
1212
gcc -O3 -std=c99 -Wall cpp_wrapper.c -o cpp_wrapper
1313

1414
check:
15-
docker run -v $(CURDIR):/mnt koalaman/shellcheck -x $(SCRIPTS)
15+
docker run --rm -v $(CURDIR):/mnt koalaman/shellcheck -x $(SCRIPTS)
1616

1717
check-%:
18-
docker run -v $(CURDIR):/mnt koalaman/shellcheck -x $*.bash
18+
docker run --rm -v $(CURDIR):/mnt koalaman/shellcheck -x $*.bash
1919

2020
ifeq ($(NO_TTY),y)
2121
NO_TTY_ARG := --no-tty

0 commit comments

Comments
 (0)