Skip to content
This repository was archived by the owner on Apr 22, 2020. It is now read-only.

Commit 634e93e

Browse files
committed
Update: Remove shellcheck container after the test execution
1 parent 5014367 commit 634e93e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ exitCode=0
44
for file in devcontrol.sh bin/test.sh; do
55
echo -n "Executing shellcheck over ${file}..."
66
failed=0
7-
docker run -i --workdir /workspace -v "$(pwd)":/workspace koalaman/shellcheck-alpine shellcheck -x "${file}" || failed=1
7+
docker run -i --rm --workdir /workspace -v "$(pwd)":/workspace koalaman/shellcheck-alpine shellcheck -x "${file}" || failed=1
88
if [ ${failed} -eq 0 ]; then
99
echo "[OK]"
1010
else

0 commit comments

Comments
 (0)