Skip to content

Commit 1a4104d

Browse files
authored
Merge pull request #400 from CircleCI-Public/deployment
Fix interactive terminal issue
2 parents 9beb8dd + 98cbb5a commit 1a4104d

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.circleci/brew-deploy.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
#!/bin/sh
2-
32
set -e
43

54
# Remove the original circleci-agent from /usr/local/bin for homebrew
65
rm /usr/local/bin/circleci
76
# Install the latest circleci from homebrew
7+
brew update
88
brew install circleci
99

1010
VERSION=$("$DESTDIR"/circleci version)
1111
TAG="v$(ruby -e "puts '$VERSION'.split('+')[0]")"
1212
REVISION=$(git rev-parse "$(ruby -e "puts '$VERSION'.split('+')[1]")")
1313
echo "Bumping circleci to $TAG+$REVISION"
14-
brew bump-formula-pr --strict \
15-
--tag="$TAG" \
16-
--revision="$REVISION" \
17-
circleci
14+
brew bump-formula-pr --strict --tag="$TAG" --revision="$REVISION" circleci

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,7 @@ jobs:
225225
- slack-notify-on-failure
226226

227227
brew-deploy:
228-
macos:
229-
xcode: "11.3.0"
228+
executor: mac
230229
environment:
231230
- USER: circleci
232231
- TRAVIS: circleci

CONTRIBUTORS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ We are very grateful to the following people have helped us to build the CLI too
1111
- [Sam Chapler](https://github.com/SamChapler)
1212
- [Nick Miyake](https://github.com/nmiyake)
1313
- [Juan Carlos Mejías Rodríguez](https://github.com/greenled)
14+
- [Vojtech Novak](https://github.com/vonovak)
15+
- [Ed Serzo](https://github.com/eserzomcity)
16+
- [Daniel Ruthardt](https://github.com/DanielRuthardt)

0 commit comments

Comments
 (0)