Skip to content

Commit a1d87d1

Browse files
[test-plugins] fix deprecated argument in mktemp
'-t' is deprecated
1 parent 184474a commit a1d87d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test-plugins.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /bin/bash
22

33
repodir="${REPODIR:-"$(git rev-parse --show-toplevel)"}"
4-
appdir="${APPDIR:-"$(mktemp --directory -t AppDir.XXXXXXXXXX)"}"
4+
appdir="${APPDIR:-"$(mktemp --tmpdir --directory AppDir.XXXXXXXX)"}"
55
count=0
66
failed=0
77

0 commit comments

Comments
 (0)