mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2025-01-03 14:17:29 +00:00
generate-changelog: don't break if npm out returns 1, which it normally does on outdated deps, which is all the time
This commit is contained in:
parent
d68078f686
commit
916055d05a
4
.github/generate-changelog
vendored
4
.github/generate-changelog
vendored
@ -21,10 +21,10 @@ echo ' - Red upgrades fulfill semver and do *not* need any action'
|
||||
echo ' - Yellow upgrades *do* need looking at changelogs for breaking changes, and updating package.json'
|
||||
echo
|
||||
echo 'CLI:'
|
||||
npm out
|
||||
npm out || true
|
||||
echo
|
||||
echo 'App:'
|
||||
cd app && npm out; cd ..
|
||||
cd app; npm out || true; cd ..
|
||||
echo
|
||||
echo 'Okay with this, or care to do/plan a few upgrades?'
|
||||
echo 'Press any key to continue, or Ctrl+C to abort'
|
||||
|
Loading…
Reference in New Issue
Block a user