Skip to content

Commit

Permalink
shell-integration: Fix syntax error due to missing double quote
Browse files Browse the repository at this point in the history
This fixes a regression introduced in commit
24702de.

Signed-off-by: Andrew Gunnerson <[email protected]>
  • Loading branch information
chenxiaolong authored and wez committed Sep 15, 2024
1 parent 9bf30b8 commit 2d0c5cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/shell-integration/wezterm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2d0c5cd

Please sign in to comment.