Skip to content

Commit 17ee594

Browse files
authored
fix(backport): add missing space in prompt (#736)
1 parent b727af2 commit 17ee594

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/backport_session.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export default class BackportSession extends Session {
167167
}
168168
} else if (!this.isBranchUpToDateWithUpstream(this.stagingBranch)) {
169169
const shouldSyncBranch = await cli.prompt(
170-
`It seems like your ${this.stagingBranch} is behind the ${this.upstream} remote` +
170+
`It seems like your ${this.stagingBranch} is behind the ${this.upstream} remote ` +
171171
'do you want to sync it?', { defaultAnswer: true });
172172

173173
if (shouldSyncBranch) {

0 commit comments

Comments
 (0)