Skip to content

Commit 97f896f

Browse files
committed
Remove triple escape in init functions
1 parent 0fd098a commit 97f896f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wt

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ init_bash() {
8181
cat <<EOF
8282
wt() {
8383
if ! command -v wt &> /dev/null; then
84-
echo "wt was not found in your \\\$PATH"
84+
echo 'wt was not found in your \$PATH'
8585
return 1
8686
fi
8787
@@ -103,7 +103,7 @@ init_fish() {
103103
cat <<EOF
104104
function wt
105105
if ! command -q wt
106-
echo "wt was not found in your \\\$PATH"
106+
echo 'wt was not found in your \$PATH'
107107
return 1
108108
end
109109

0 commit comments

Comments
 (0)