From 43d101905949f484fcdb709198ddf7e67ef9664e Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Tue, 19 Nov 2024 06:40:51 -0500 Subject: [PATCH] * Bug fix #1048: docker: Error when using SLEEP_TIME - "integer expression expected" Thanks @charltonstanley ! --- Docker/liberate.sh | 4 ++-- Source/AppScaffolding/AppScaffolding.csproj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Docker/liberate.sh b/Docker/liberate.sh index 73cd8966..83caf88d 100755 --- a/Docker/liberate.sh +++ b/Docker/liberate.sh @@ -149,7 +149,7 @@ main() { SLEEP_TIME=-1 fi - if [ "${SLEEP_TIME}" -eq -1 ]; then + if [ "${SLEEP_TIME}" == -1 ]; then info "running once" else info "running every ${SLEEP_TIME}" @@ -161,7 +161,7 @@ main() { run # Liberate only once if SLEEP_TIME was set to -1 - if [ "${SLEEP_TIME}" -eq -1 ]; then + if [ "${SLEEP_TIME}" == -1 ]; then break fi diff --git a/Source/AppScaffolding/AppScaffolding.csproj b/Source/AppScaffolding/AppScaffolding.csproj index 77bbe367..923cfa82 100644 --- a/Source/AppScaffolding/AppScaffolding.csproj +++ b/Source/AppScaffolding/AppScaffolding.csproj @@ -2,7 +2,7 @@ net8.0 - 11.5.4.1 + 11.5.5.1