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 df15721 commit cc7d500Copy full SHA for cc7d500
etc/DockerTag.sh
@@ -13,6 +13,11 @@ if [[ "$@" == "-dev" ]]; then
13
"./etc/DockerTag.sh"
14
)
15
cat "${file_list[@]}" | sha256sum | awk '{print substr($1, 1, 6)}'
16
+elif [[ "$@" == "-bazel" ]]; then
17
+ file_list=(
18
+ "./bazel/Dockerfile"
19
+ )
20
+ cat "${file_list[@]}" | sha256sum | awk '{print substr($1, 1, 6)}'
21
elif [[ "$@" == "-master" ]]; then
22
git describe
23
else
0 commit comments