File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ service_backup() {
188188 dokku_log_fail " Provide AWS credentials or use the --use-iam flag"
189189 fi
190190
191- TMPDIR=$( mktemp -d)
191+ TMPDIR=$( mktemp -d --tmpdir )
192192 trap ' rm -rf "$TMPDIR" > /dev/null' RETURN INT TERM EXIT
193193
194194 docker inspect " $ID " & > /dev/null || dokku_log_fail " Service container does not exist"
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ fn-help-contents() {
7676
7777fn-help-contents-subcommand () {
7878 declare SUBCOMMAND=" $1 " FULL_OUTPUT=" $2 "
79- local TMPDIR=$( mktemp -d)
79+ local TMPDIR=$( mktemp -d --tmpdir )
8080 local UNCLEAN_FILE=" ${TMPDIR} /cmd-unclean" CLEAN_FILE=" ${TMPDIR} /cmd-clean"
8181 local BOLD CMD_OUTPUT CYAN EXAMPLE LIGHT_GRAY NORMAL
8282 trap ' rm -rf "$TMPDIR" > /dev/null' RETURN INT TERM EXIT
You can’t perform that action at this time.
0 commit comments