Skip to content

Commit c7e84bc

Browse files
committed
Add debug line to self-signer check.
1 parent 4284267 commit c7e84bc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build/self-signer-utility.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash
22

3+
set -x
4+
35
tag=$(bin/yq '.tls.selfSigner.image.tag' ./cockroachdb/values.yaml)
46
echo "Your current tag is ${tag}"
57
currentCommit=$(git rev-parse HEAD)
@@ -8,4 +10,5 @@ lastCommit=$(git rev-parse @~)
810
git diff "${lastCommit}" "${currentCommit}" cockroachdb/values.yaml | grep -w "$tag" | grep +
911
if [[ $? -eq 0 ]]; then
1012
echo "You have changed the tag of selfSigner utility"
13+
git diff "${lastCommit}" "${currentCommit}" cockroachdb/values.yaml
1114
fi

0 commit comments

Comments
 (0)