Skip to content

Commit eef53a0

Browse files
authored
Merge pull request #30 from adtyanair/master
remove hardcoded executable path
2 parents 5c7fe12 + 7f15bc1 commit eef53a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mods/shell.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package mods
33
var zsh = `
44
setopt PROMPT_SUBST
55
NW=$'\n'
6-
PROMPT='$(/usr/local/bin/shelby info)${NW}%(?.%F{green}.%F{red})❯%f'`
6+
PROMPT='$(shelby info)${NW}%(?.%F{green}.%F{red})❯%f'`
77

88
var bash = `prompt_shelby_load() {
99
if [ $? != 0 ]; then
@@ -12,7 +12,7 @@ else
1212
local prompt_symbol="\[\e[0;92m\]❯\[\e[0m\]"
1313
fi
1414
15-
PS1="$(/usr/local/bin/shelby info)\n${prompt_symbol} "
15+
PS1="$(shelby info)\n${prompt_symbol} "
1616
}
1717
PROMPT_COMMAND=prompt_shelby_load
1818
`

0 commit comments

Comments
 (0)