Browse Source

acme: Fix arithmetic syntax

Thanks to @jow- for pointing out the mistake.

Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
lilik-openwrt-22.03
Toke Høiland-Jørgensen 6 years ago
parent
commit
6bd59471bb
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      net/acme/Makefile
  2. +1
    -1
      net/acme/files/run.sh

+ 1
- 1
net/acme/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=acme
PKG_VERSION:=2.7.9
PKG_RELEASE:=3
PKG_RELEASE:=4
PKG_LICENSE:=GPLv3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz


+ 1
- 1
net/acme/files/run.sh View File

@ -99,7 +99,7 @@ pre_checks()
return 1
fi
debug "Waiting for nginx to stop..."
tries=$tries+1
tries=$((tries + 1))
sleep 1
done
;;


Loading…
Cancel
Save