Skip to content

Commit

Permalink
[beta-51] houndCI feedback fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SkeloGH committed Dec 16, 2019
1 parent e76a7fb commit ab2c2a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bin/lib/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ const readCLISettings = () => {
const getQueries = (fileCfg, cliCfg) => {
let queries = null;
if (fileCfg.queries && fileCfg.queries.length > 0) {
queries = fileCfg.queries;
({ queries } = fileCfg);
}
if (!queries && cliCfg.queries && cliCfg.queries.length) {
queries = cliCfg.queries;
({ queries } = cliCfg);
}
queries = queries || [];
return queries;
Expand Down
2 changes: 1 addition & 1 deletion dist/bin/lib/config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ab2c2a2

Please sign in to comment.