From 7c18c44f3c5498fa7f762fbdc59e7726ae7d5e77 Mon Sep 17 00:00:00 2001 From: Alex Phillips Date: Mon, 14 Feb 2022 08:51:34 -0500 Subject: [PATCH] fixed copy/paste var name error: --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a926a8e..8c4bf8a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN \ sqlite && \ echo "**** install budge ****" && \ mkdir -p /app/budge && \ - if [ -z ${NOTEMARKS_RELEASE+x} ]; then \ + if [ -z ${BUDGE_RELEASE+x} ]; then \ BUDGE_RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/BudgE/commits/main" \ | awk '/sha/{print $4;exit}' FS='[""]'); \ fi && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index a926a8e..8c4bf8a 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -25,7 +25,7 @@ RUN \ sqlite && \ echo "**** install budge ****" && \ mkdir -p /app/budge && \ - if [ -z ${NOTEMARKS_RELEASE+x} ]; then \ + if [ -z ${BUDGE_RELEASE+x} ]; then \ BUDGE_RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/BudgE/commits/main" \ | awk '/sha/{print $4;exit}' FS='[""]'); \ fi && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 6d84d99..35890ac 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -25,7 +25,7 @@ RUN \ sqlite && \ echo "**** install budge ****" && \ mkdir -p /app/budge && \ - if [ -z ${NOTEMARKS_RELEASE+x} ]; then \ + if [ -z ${BUDGE_RELEASE+x} ]; then \ BUDGE_RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/BudgE/commits/main" \ | awk '/sha/{print $4;exit}' FS='[""]'); \ fi && \