From 2d0c5cddc91a9c59aef9a7667d90924e7cedd0ac Mon Sep 17 00:00:00 2001 From: Andrew Gunnerson Date: Sun, 15 Sep 2024 15:51:33 -0400 Subject: [PATCH] shell-integration: Fix syntax error due to missing double quote This fixes a regression introduced in commit 24702de74a958460e3b9af3fbf21327b7ba4a3e3. Signed-off-by: Andrew Gunnerson --- assets/shell-integration/wezterm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/shell-integration/wezterm.sh b/assets/shell-integration/wezterm.sh index 3d7d1021631..2ed422c8e96 100644 --- a/assets/shell-integration/wezterm.sh +++ b/assets/shell-integration/wezterm.sh @@ -488,7 +488,7 @@ __wezterm_semantic_precmd() { function __wezterm_semantic_preexec() { # Restore the original PS1/PS2 if set if [ -n "${__wezterm_save_ps1+1}" ]; then - PS1=$__wezterm_save_ps1" + PS1="$__wezterm_save_ps1" PS2="$__wezterm_save_ps2" unset __wezterm_save_ps1 fi