We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
bazel sync --only=repo
1 parent b7317b1 commit 6f1ee40Copy full SHA for 6f1ee40
ng-dev/release/publish/external-commands.ts
@@ -270,9 +270,9 @@ export abstract class ExternalCommands {
270
mode: 'silent',
271
});
272
} catch (e) {
273
- Log.error(e);
274
- Log.error(' ✘ An error occurred while updating Aspect lock files.');
275
- throw new FatalReleaseActionError();
+ // Note: Gracefully handling these errors because `sync` command
+ // exits with a non-zero exit code when pnpm-lock.yaml file is updated.
+ Log.debug(e);
276
}
277
spinner.success(green(' Updated Aspect `rules_js` lock files.'));
278
0 commit comments