diff --git a/src/cml.js b/src/cml.js index b92b82f0c..bd4d6c34f 100644 --- a/src/cml.js +++ b/src/cml.js @@ -510,7 +510,11 @@ class CML { remote }); for (const command of commands) { - await exec(...command); + try { + await exec(...command); + } catch (err) { + winston.warn(err); + } } if (fetchDepth !== undefined) { if (fetchDepth <= 0) {