mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-25 08:38:45 +01:00
Merge pull request #636 from electronicboy/paper-maczsh
paper tools - fix shell matching
This commit is contained in:
commit
a30343c85e
1 changed files with 1 additions and 1 deletions
2
paper
2
paper
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# resolve shell-specifics
|
||||
case "$(echo "$SHELL" | sed 's|/usr||g')" in
|
||||
case "$(echo "$SHELL" | sed -E 's|/usr(/local)?||g')" in
|
||||
"/bin/zsh")
|
||||
RCPATH="$HOME/.zshrc"
|
||||
SOURCE="${BASH_SOURCE[0]:-${(%):-%N}}"
|
||||
|
|
Loading…
Reference in a new issue