Skip to content
This repository has been archived by the owner on Jul 14, 2021. It is now read-only.

Fixing bug in expeditor script to update dependencies #1827

Merged
merged 1 commit into from
Nov 14, 2018

Conversation

tyler-ball
Copy link
Contributor

@tyler-ball tyler-ball commented Nov 14, 2018

Description

For loop was using wrong syntax. Also updating dependencies since these
need to go in too.

Issues Resolved

☝️

Check List

Signed-off-by: tyler-ball tball@chef.io

For loop was using wrong syntax. Also updating dependencies since these
need to go in too.

Signed-off-by: tyler-ball <tball@chef.io>
@@ -21,7 +21,7 @@ git checkout -b "$branch"
gem install rake

tries=6
for i in {1..$tries}; do
for (( i=1; i<=$tries; i+=1 )); do
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess we can go with a purely bash iterator. 🙄

@@ -203,7 +203,7 @@ GEM
mixlib-log (~> 2.0)
rack (~> 2.0)
uuidtools (~> 2.1)
cheffish (14.0.1)
cheffish (14.0.4)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to bring the unrelated cheffish update along in this PR? Or correct #1825 ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to update Inspec too, and this fixes the script that updates the dependencies, so I figured we could do it all here rather than waiting 2+ hours for all the extra builds

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

makes sense

@tyler-ball tyler-ball merged commit 4dc040d into master Nov 14, 2018
@tyler-ball tyler-ball deleted the expeditor_bug branch November 14, 2018 22:25
Copy link
Contributor

@robbkidd robbkidd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ship it

@lock
Copy link

lock bot commented Jan 14, 2019

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@lock lock bot locked as resolved and limited conversation to collaborators Jan 14, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Development

Successfully merging this pull request may close these issues.

3 participants