Browse Source

Merge 4afd5c48f1 into 5f6e3da766

pull/1067/merge
Shane 8 years ago
committed by GitHub
parent
commit
4c8c793f1d
  1. 3
      acme.sh

3
acme.sh

@ -4885,8 +4885,9 @@ install() {
fi
cp "$PROJECT_ENTRY" "$LE_WORKING_DIR/" && chmod +x "$LE_WORKING_DIR/$PROJECT_ENTRY"
_status=`echo $?`
if [ "$?" != "0" ]; then
if [ "$_status" != "0" ]; then
_err "Install failed, can not copy $PROJECT_ENTRY"
return 1
fi

Loading…
Cancel
Save