Skip to content

Commit 50765a8

Browse files
authored
Merge pull request #244 from anantasty/linter-fix
Removes shell check issue in make.sh script. This was preventing the …
2 parents 0fca886 + e17a761 commit 50765a8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/make.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ finish() {
2525
trap finish EXIT
2626
# Create a temporary file in the auto-cleaned up directory while avoiding
2727
# overwriting TMPDIR for other processes.
28-
# shellcheck disable=SC2120 # (Arguments may be passed, e.g. maketemp -d)
28+
# shellcheck disable=SC2120
29+
# (Arguments may be passed, e.g. maketemp -d)
2930
maketemp() {
3031
TMPDIR="${DELETE_AT_EXIT}" mktemp "$@"
3132
}

0 commit comments

Comments
 (0)