Skip to content

Commit 80d79c9

Browse files
committed
refactor: update release report
1 parent 33886f8 commit 80d79c9

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

lib/package/release.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,12 +240,16 @@ export default class Publish {
240240

241241
res = await this.#execGitCommand( `Merging the branch "${ this.#originalBranch }" to the branch "${ this.#previousReleaseBranch }"`, [ "merge", "--no-edit", "--quiet", "--ff-only", this.#originalBranch ], { "repeatOnError": false } );
242242
if ( !res.ok ) return res;
243+
244+
console.log();
243245
}
244246

245247
// create release branch, if HEAD has no release branch
246248
else if ( !status.head.branches.has( this.#previousReleaseBranch ) ) {
247249
res = await this.#execGitCommand( `Creating and switching to the branch "${ this.#previousReleaseBranch }"`, [ "switch", "--create", this.#previousReleaseBranch ], { "repeatOnError": false } );
248250
if ( !res.ok ) return res;
251+
252+
console.log();
249253
}
250254
}
251255

@@ -272,6 +276,8 @@ export default class Publish {
272276
);
273277
if ( !res.ok ) return res;
274278
}
279+
280+
console.log();
275281
}
276282

277283
// update documentation

0 commit comments

Comments
 (0)