Skip to content

Commit 2c45467

Browse files
committed
fix bug in mktemp command
1 parent 1cbde42 commit 2c45467

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ umask 0002
425425
backup_old_installation
426426

427427
# Get the current directory and change to a new temporary directory
428-
curdir=$(pwd) && tmpdir=$(mktemp -t froster.XXX) && cd "$tmpdir"
428+
curdir=$(pwd) && tmpdir=$(mktemp -d -t froster.XXX) && cd "$tmpdir"
429429

430430
# Install pipx
431431
install_pipx

0 commit comments

Comments
 (0)