1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 13:16:47 +00:00

Simpler documentation

This commit is contained in:
Tw93
2025-10-09 01:16:04 +08:00
parent 3008998093
commit 4412cb0862

View File

@@ -92,7 +92,7 @@ resolve_source_dir() {
# 3) Fallback: fetch repository to a temp directory (works for curl | bash)
local tmp
tmp="$(mktemp_dir)"
tmp="$(mktemp -d)"
# Expand tmp now so trap doesn't depend on local scope
trap "rm -rf '$tmp'" EXIT