Commit c41eaf84 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Add missing additional '\' to sed word delimiter

.ssh/ssh was missing an additional slash for zsh/ash shells to escape
a slash in a single-quote string.
parent d3dc55d2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ config_sed() {
	esac
	case "$SHELL" in
		bash) SED_WORD_START='\b' SED_WORD_END='\b' ;;
		zsh|sh) SED_WORD_START='\\b' SED_WORD_END='\b' ;;
		zsh|sh) SED_WORD_START='\\b' SED_WORD_END='\\b' ;;
	esac
}