We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4284267 commit c7e84bcCopy full SHA for c7e84bc
build/self-signer-utility.sh
@@ -1,5 +1,7 @@
1
#!/bin/bash
2
3
+set -x
4
+
5
tag=$(bin/yq '.tls.selfSigner.image.tag' ./cockroachdb/values.yaml)
6
echo "Your current tag is ${tag}"
7
currentCommit=$(git rev-parse HEAD)
@@ -8,4 +10,5 @@ lastCommit=$(git rev-parse @~)
8
10
git diff "${lastCommit}" "${currentCommit}" cockroachdb/values.yaml | grep -w "$tag" | grep +
9
11
if [[ $? -eq 0 ]]; then
12
echo "You have changed the tag of selfSigner utility"
13
+ git diff "${lastCommit}" "${currentCommit}" cockroachdb/values.yaml
14
fi
0 commit comments