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