mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 08:12:15 -04:00
Merge pull request #997 from ddworken/master
Make the script POSIX compliant so it works with dash (Fixes #977)
This commit is contained in:
commit
21a1ec73ae
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ export PATH="/usr/sbin:$PATH" # /usr/sbin/nginx
|
|||
export GOPATH="${GOPATH:-/tmp/go}"
|
||||
export PATH="$GOPATH/bin:$PATH"
|
||||
|
||||
if [ `uname` == 'Darwin' ]; then
|
||||
if [ `uname` = "Darwin" ];then
|
||||
readlink="greadlink"
|
||||
else
|
||||
readlink="readlink"
|
||||
|
|
|
|||
Loading…
Reference in a new issue