summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremiah Snapp <jeremiah@chef.io>2022-03-23 12:17:45 -0400
committerJeremiah Snapp <jeremiah@chef.io>2022-03-23 12:19:50 -0400
commit6062840234cd476c7f5308e90a35a20a4895bfd1 (patch)
treeba7e7f42b04fead390ec373c0bcdc32e21a220de
parentb628f9811283fca2a9d5b74743b02ca0e297dadb (diff)
downloadchef-6062840234cd476c7f5308e90a35a20a4895bfd1.tar.gz
Minor fix to conditional in promote-docker-images.sh
Signed-off-by: Jeremiah Snapp <jeremiah@chef.io>
-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