fix: mktemp: too few X's in template

This commit is contained in:
debugtalk
2022-01-20 14:21:59 +08:00
parent b31fa0aab8
commit 21f4be5976

View File

@@ -46,8 +46,8 @@ function main() {
echo
echoInfo "Created temp dir..."
echo "$ mktemp -d -t hrp"
tmp_dir=$(mktemp -d -t hrp)
echo "$ mktemp -d -t hrp.XXXX"
tmp_dir=$(mktemp -d -t hrp.XXXX)
echo "$tmp_dir"
cd "$tmp_dir"
echo