You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
num_of_mistakes=$(echo $mistakes | sed '/^$/d' | wc -l); \
26
+
if (( $num_of_mistakes > 0 )); then \
27
+
echo "Not all 'secret' fields were replaced by the bin/generate-secrets script. Please make sure to cover the following fields with an 'insert_secret' entry:"; \
28
+
echo $mistakes; \
29
+
exit 1; \
30
+
else \
31
+
echo "Perfect! All secret fields were replaced by the bin/generate-secrets script."; \
0 commit comments