minor, use WORKING_DIR/le.sh to run cronjob. removes the dependency to "which" command.

This commit is contained in:
neil 2016-01-24 10:28:53 +08:00
parent 17c100d6ff
commit 18629d0fdd
1 changed files with 1 additions and 3 deletions

4
le.sh
View File

@ -888,9 +888,7 @@ installcronjob() {
_initpath
_info "Installing cron job"
if ! crontab -l | grep 'le.sh cron' ; then
if command -v "le.sh" > /dev/null ; then
lesh="$(which le.sh)"
elif [ -f "$WORKING_DIR/le.sh" ] ; then
if [ -f "$WORKING_DIR/le.sh" ] ; then
lesh="\"$WORKING_DIR\"/le.sh"
else
_err "Can not install cronjob, le.sh not found."