From 652c9dee332eba2d9faafb22305bc343e0f066db Mon Sep 17 00:00:00 2001 From: Arctic Date: Fri, 4 Jul 2025 12:05:01 -0500 Subject: [PATCH] Fix syntax error: unmatched quote in trap command --- foxshell.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foxshell.zsh b/foxshell.zsh index e79e8b5..314b72b 100644 --- a/foxshell.zsh +++ b/foxshell.zsh @@ -261,7 +261,7 @@ if '[' '-n' "${_foxshell_bootstrap-}" ']'; then tmpdir="$('command' 'mktemp' '-d' "$FOXSHELL"/tmp.XXXXXXXXXX)" || 'exit' 'command' 'chmod' 'go-rwx' '--' "$tmpdir" || 'exit' 'set' '-E' - 'trap' ''command' 'rm' '-rf' '--' "$tmpdir"; 'exit' '1' 'ERR' + 'trap' 'command rm -rf -- "$tmpdir"; exit 1' 'ERR' 'set' '+E' dir="$FOXSHELL"/foxshell