fix shell match to account for /usr/local for homebrew installs of zsh on macOS
This commit is contained in:
parent
fb0f8ba518
commit
1b70427dfc
1 changed files with 1 additions and 1 deletions
2
paper
2
paper
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# resolve shell-specifics
|
# resolve shell-specifics
|
||||||
case "$(echo "$SHELL" | sed 's|/usr||g')" in
|
case "$(echo "$SHELL" | sed -E 's|/usr(/local)?||g')" in
|
||||||
"/bin/zsh")
|
"/bin/zsh")
|
||||||
RCPATH="$HOME/.zshrc"
|
RCPATH="$HOME/.zshrc"
|
||||||
SOURCE="${BASH_SOURCE[0]:-${(%):-%N}}"
|
SOURCE="${BASH_SOURCE[0]:-${(%):-%N}}"
|
||||||
|
|
Loading…
Reference in a new issue