From 916055d05a7e03658dfb44d72fc4d844010197ed Mon Sep 17 00:00:00 2001 From: Ronan Jouchet Date: Mon, 1 Nov 2021 15:57:33 -0400 Subject: [PATCH] generate-changelog: don't break if npm out returns 1, which it normally does on outdated deps, which is all the time --- .github/generate-changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/generate-changelog b/.github/generate-changelog index 77f87f1..333a91a 100755 --- a/.github/generate-changelog +++ b/.github/generate-changelog @@ -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'