Skip to content

Commit 458935a

Browse files
committed
fix: suggestion command git land -> git-land
1 parent 96b7b63 commit 458935a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/landing_session.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class LandingSession extends Session {
120120
getRebaseSuggestion(subjects) {
121121
const { upstream, branch } = this;
122122
let command = `git rebase ${upstream}/${branch} -i`;
123-
command += ' -x "git node land --amend"';
123+
command += ' -x "git-node land --amend"';
124124

125125
const squashes = subjects.filter(
126126
line => line.includes('fixup!') || line.includes('squash!'));
@@ -181,7 +181,7 @@ class LandingSession extends Session {
181181
cli.log(`There are ${subjects.length} commits in the PR`);
182182
cli.log('Please run the following commands to complete landing\n\n' +
183183
`$ ${suggestion}\n` +
184-
'$ git node land --continue');
184+
'$ git-node land --continue');
185185
}
186186
}
187187

0 commit comments

Comments
 (0)