mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-05-08 05:36:09 +02:00
bin/safeRun.sh: Fix try: not found bug
This fixes a copy+paste bug introduced in commit 8b28e007842efefccf852a55f783761f86dc6090 (v1.8.8).
This commit is contained in:
parent
9bc3ac0957
commit
d2610284ad
@ -24,8 +24,8 @@ fatal() { error "$@"; exit 1; }
|
||||
LAST_EMAIL_SEND=0
|
||||
|
||||
# Move to the Etherpad base directory.
|
||||
MY_DIR=$(try cd "${0%/*}" && try pwd -P) || exit 1
|
||||
try cd "${MY_DIR}/../.."
|
||||
MY_DIR=$(cd "${0%/*}" && pwd -P) || exit 1
|
||||
cd "${MY_DIR}/../.." || exit 1
|
||||
|
||||
# Check if a logfile parameter is set
|
||||
LOG="$1"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user