summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2021-03-15 12:26:55 -0700
committerTim Smith <tsmith84@gmail.com>2021-03-15 12:26:55 -0700
commit3a8de60f7d90666577919eeb2d75f69268619b98 (patch)
tree82fb9605cfcd6a61f614d2890250719550669725
parentb9b49ea362ff9358c07f1f9fb0e8bac822496e79 (diff)
downloadchef-3a8de60f7d90666577919eeb2d75f69268619b98.tar.gz
Fix interpolation and use the right variable
Signed-off-by: Tim Smith <tsmith@chef.io>
-rwxr-xr-x.expeditor/update_bundler_dep.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.expeditor/update_bundler_dep.sh b/.expeditor/update_bundler_dep.sh
index e9bdfffe6f..71575a6c76 100755
--- a/.expeditor/update_bundler_dep.sh
+++ b/.expeditor/update_bundler_dep.sh
@@ -11,7 +11,7 @@
set -evx
-branch="expeditor/$EXPEDITOR_REPO_$EXPEDITOR_LATEST_COMMIT"
+branch="expeditor/${EXPEDITOR_REPO}_${EXPEDITOR_LATEST_COMMIT}"
git checkout -b "$branch"
bundle lock --update
@@ -20,7 +20,7 @@ git add .
# give a friendly message for the commit and make sure it's noted for any future audit of our codebase that no
# DCO sign-off is needed for this sort of PR since it contains no intellectual property
-git commit --message "Bump $DEPNAME to $EXPEDITOR_LATEST_COMMIT" --message "This pull request was triggered automatically via Expeditor when $DEPNAME $EXPEDITOR_LATEST_COMMIT was merged." --message "This change falls under the obvious fix policy so no Developer Certificate of Origin (DCO) sign-off is required."
+git commit --message "Bump $EXPEDITOR_REPO to $EXPEDITOR_LATEST_COMMIT" --message "This pull request was triggered automatically via Expeditor when $DEPNAME $EXPEDITOR_LATEST_COMMIT was merged." --message "This change falls under the obvious fix policy so no Developer Certificate of Origin (DCO) sign-off is required."
open_pull_request "$EXPEDITOR_BRANCH"