Skip to content

Commit

Permalink
Merge pull request #244 from anantasty/linter-fix
Browse files Browse the repository at this point in the history
Removes shell check issue in make.sh script. This was preventing the …
  • Loading branch information
morgante authored Aug 26, 2019
2 parents 0fca886 + e17a761 commit 50765a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ finish() {
trap finish EXIT
# Create a temporary file in the auto-cleaned up directory while avoiding
# overwriting TMPDIR for other processes.
# shellcheck disable=SC2120 # (Arguments may be passed, e.g. maketemp -d)
# shellcheck disable=SC2120
# (Arguments may be passed, e.g. maketemp -d)
maketemp() {
TMPDIR="${DELETE_AT_EXIT}" mktemp "$@"
}
Expand Down

0 comments on commit 50765a8

Please sign in to comment.