Skip to content

Commit

Permalink
fix(release): Fix release script by removing ',' of the last item in …
Browse files Browse the repository at this point in the history
…the list
  • Loading branch information
tinayuangao authored and ThomasBurleson committed Feb 27, 2018
1 parent db8029a commit 0486e85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@
comment(!isDryRun ? '' : `Publishing @angular/${SOURCE_REPO} ${newVersion} to npm`),
`${skipOnDryRun} npm publish`,

'cd ../',
'cd ../'
);

function stringifyFunction (method) {
Expand Down Expand Up @@ -400,7 +400,7 @@
`cd ${WIKI_LOCAL}`,
'git add .',
`git commit -m "docs(wiki): update to version ${newVersion}"`,
`${skipOnDryRun} git push ${ORIGIN_WIKI} master`,
`${skipOnDryRun} git push ${ORIGIN_WIKI} master`
)
}

Expand Down

0 comments on commit 0486e85

Please sign in to comment.