Fixed epic typo.
This commit is contained in:
parent
0cf468407f
commit
1752bf7fb3
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ module.exports.folder = async (root, options) => {
|
||||||
const bvTarget = args.shift();
|
const bvTarget = args.shift();
|
||||||
const bvSourceName = trimEnd(args.join(' '), ';');
|
const bvSourceName = trimEnd(args.join(' '), ';');
|
||||||
const bvSource = options.vars[bvSourceName];
|
const bvSource = options.vars[bvSourceName];
|
||||||
if(typeof bvSource !== 'objects' || bvSource === null)
|
if(typeof bvSource !== 'object' || bvSource === null)
|
||||||
throw `INVALID VARS SOURCE: ${bvSourceName}`;
|
throw `INVALID VARS SOURCE: ${bvSourceName}`;
|
||||||
|
|
||||||
const bvProps = [];
|
const bvProps = [];
|
||||||
|
|
Loading…
Reference in a new issue