Skip to content

Commit

Permalink
fix: correctly generate changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
filipesilva committed May 9, 2017
1 parent 29a9513 commit 5090e3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/publish/src/changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ const config = {

function prependDelta() {
return exec(
'cat CHANGELOG-delta.md CHANGELOG.md > CHANGELOG-new.md;' +
'mv CHANGELOG-new.md CHANGELOG.md;' +
'cat CHANGELOG-delta.md CHANGELOG.md > CHANGELOG-new.md &&' +
'mv CHANGELOG-new.md CHANGELOG.md &&' +
'rm CHANGELOG-delta.md');
}

Expand Down

0 comments on commit 5090e3b

Please sign in to comment.