Skip to content

Commit

Permalink
[eas-cli] only print channel-branch pairing if we created a channel (#…
Browse files Browse the repository at this point in the history
…2036)

* [eas-cli] only print channel-branch pairing if we created a channel

* update CHANGELOG.md
  • Loading branch information
quinlanj authored Sep 1, 2023
1 parent 66d02d9 commit 2e31b42
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ This is the log of notable changes to EAS CLI and related packages.

### 🐛 Bug fixes

- Update: only print channel-branch pairing if we created a channel. ([#2036](https://github.com/expo/eas-cli/pull/2036) by [@quinlanj](https://github.com/quinlanj))

### 🧹 Chores

## [5.1.0](https://github.com/expo/eas-cli/releases/tag/v5.1.0) - 2023-09-01
Expand Down
5 changes: 3 additions & 2 deletions packages/eas-cli/src/commands/update/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -360,10 +360,11 @@ export default class UpdatePublish extends EasCommand {
branchId,
channelName: branchName,
});
Log.withTick(
`Channel: ${chalk.bold(branchName)} pointed at branch: ${chalk.bold(branchName)}`
);
}

Log.withTick(`Channel: ${chalk.bold(branchName)} pointed at branch: ${chalk.bold(branchName)}`);

const vcsClient = getVcsClient();

const gitCommitHash = await vcsClient.getCommitHashAsync();
Expand Down

0 comments on commit 2e31b42

Please sign in to comment.