Skip to content

Commit

Permalink
fix: correct global config use
Browse files Browse the repository at this point in the history
  • Loading branch information
dhoulb committed Jan 15, 2019
1 parent b2d8462 commit 8e5fb99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/multiSemanticRelease.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async function multiSemanticRelease(
logger.complete(`Started multirelease! Loading ${paths.length} packages...`);

// Vars.
const { options: globalOptions } = await getConfig(cwd);
const globalOptions = await getConfig(cwd);
const options = Object.assign({}, globalOptions, inputOptions);
const multiContext = { options, cwd, env, stdout, stderr };

Expand Down

0 comments on commit 8e5fb99

Please sign in to comment.