summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <454857+lamont-granquist@users.noreply.github.com>2022-03-23 11:19:37 -0700
committerGitHub <noreply@github.com>2022-03-23 11:19:37 -0700
commit016d13a7dd3759f2d14629d48bd784a979bc4dcb (patch)
treeba7e7f42b04fead390ec373c0bcdc32e21a220de
parentb628f9811283fca2a9d5b74743b02ca0e297dadb (diff)
parent6062840234cd476c7f5308e90a35a20a4895bfd1 (diff)
downloadchef-016d13a7dd3759f2d14629d48bd784a979bc4dcb.tar.gz
Merge pull request #12701 from chef/jsnapp/chef-17/minor-fix-to-promote-docker-images.sh
-rwxr-xr-x.expeditor/promote-docker-images.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.expeditor/promote-docker-images.sh b/.expeditor/promote-docker-images.sh
index 857fb3012f..1bc8ed4a1c 100755
--- a/.expeditor/promote-docker-images.sh
+++ b/.expeditor/promote-docker-images.sh
@@ -42,7 +42,7 @@ latest_major_version_in_omnibus_stable="$(mixlib-install download chef --version
if [[ "$channel" == "current" ]]; then
# Add major and major.minor version tags unless this major version has been promoted to the omnibus STABLE channel
- if [[ "$major_version_is_in_omnibus_stable" = "false" ]] ; then
+ if [[ "$major_version_is_in_omnibus_stable" == "false" ]] ; then
create_and_push_manifest "$major_version"
create_and_push_manifest "${major_version}.${minor_version}"
fi