bin/safeRun.sh: Fix try: not found
bug
This fixes a copy+paste bug introduced in commit
8b28e00784
(v1.8.8).
This commit is contained in:
parent
9bc3ac0957
commit
d2610284ad
1 changed files with 2 additions and 2 deletions
|
@ -24,8 +24,8 @@ fatal() { error "$@"; exit 1; }
|
||||||
LAST_EMAIL_SEND=0
|
LAST_EMAIL_SEND=0
|
||||||
|
|
||||||
# Move to the Etherpad base directory.
|
# Move to the Etherpad base directory.
|
||||||
MY_DIR=$(try cd "${0%/*}" && try pwd -P) || exit 1
|
MY_DIR=$(cd "${0%/*}" && pwd -P) || exit 1
|
||||||
try cd "${MY_DIR}/../.."
|
cd "${MY_DIR}/../.." || exit 1
|
||||||
|
|
||||||
# Check if a logfile parameter is set
|
# Check if a logfile parameter is set
|
||||||
LOG="$1"
|
LOG="$1"
|
||||||
|
|
Loading…
Reference in a new issue