Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4651ec7

Browse files
committedOct 29, 2024··
use posix shell complient incrementation syntax
Signed-off-by: Spirit-act <16631523+Spirit-act@users.noreply.github.com>
1 parent 83d5196 commit 4651ec7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎charts/thumbor/templates/remotecv-deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ spec:
5252
5353
echo "Waiting for Redis...";
5454
sleep 1;
55-
((COUNT++))
55+
COUNT=$((COUNT+1))
5656
done
5757
env:
5858
{{- get (fromYaml (include "thumbor.envVars" .)) "env" | toYaml | nindent 12 -}}

0 commit comments

Comments
 (0)
Please sign in to comment.