fix: indicate in logs if running in dry-run mode

This commit is contained in:
Pierre Vanduynslager 2018-11-13 18:18:55 -05:00
parent 5180001ae6
commit e92c84ec08

View File

@ -52,7 +52,7 @@ async function run(context, plugins) {
); );
return false; return false;
} }
logger.success(`Run automated release from branch ${ciBranch}`); logger.success(`Run automated release from branch ${ciBranch}${options.dryRun ? ' in dry-run mode' : ''}`);
await verify(context); await verify(context);