We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4037d81 commit dd74b79Copy full SHA for dd74b79
.werft/jobs/build/installer/post-process.sh
@@ -52,7 +52,7 @@ MATCHES="$(grep -c -- --- k8s.yaml)"
52
# get the read number of K8s manifest docs
53
# K8s object names and kinds are duplicated in a config map to faciliate deletion
54
# subtract one (the config map) and then divide by 2 to get the actual # of docs we'll loop through
55
-DOCS="$((((MATCHES - 1) / 2) + 1))"
+DOCS="$(((MATCHES - 1) / 2))"
56
documentIndex=0
57
58
while [ "$documentIndex" -le "$DOCS" ]; do
0 commit comments