Skip to content

Commit 82d4ee0

Browse files
authored
Alpine IT-Tools fix typo "unexpected EOF while looking for matching `"' (#2644)
1 parent d564dc0 commit 82d4ee0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ct/alpine-it-tools.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if [ ! -d /usr/share/nginx/html ]; then
3030
fi
3131

3232
RELEASE=$(curl -s https://api.github.com/repos/CorentinTh/it-tools/releases/latest | grep '"tag_name":' | cut -d '"' -f4)
33-
if [ "${RELEASE}" != "$(cat /opt/${APP}_version.txt" ] || [ ! -f /opt/${APP}_version.txt ]; then
33+
if [ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ] || [ ! -f /opt/${APP}_version.txt ]; then
3434
DOWNLOAD_URL="https://github.com/CorentinTh/it-tools/releases/download/${RELEASE}/it-tools-${RELEASE#v}.zip"
3535
msg_info "Updating ${APP} LXC"
3636
curl -fsSL -o it-tools.zip "$DOWNLOAD_URL"

0 commit comments

Comments
 (0)