Skip to content

Commit

Permalink
* Bug fix #1048: docker: Error when using SLEEP_TIME - "integer expre…
Browse files Browse the repository at this point in the history
…ssion expected"

Thanks @charltonstanley !
  • Loading branch information
rmcrackan committed Nov 19, 2024
1 parent ed87ded commit 43d1019
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Docker/liberate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Source/AppScaffolding/AppScaffolding.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Version>11.5.4.1</Version>
<Version>11.5.5.1</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Octokit" Version="11.0.1" />
Expand Down

0 comments on commit 43d1019

Please sign in to comment.