fix: doubled version

This commit is contained in:
Thomas E Lackey 2020-11-19 15:58:32 -06:00
parent fafe784ba1
commit 76ef1534e5

View File

@ -38,7 +38,7 @@ const getCliVersionInfo = () => {
const args = ['version']; const args = ['version'];
const child = spawnSync(command, args, { encoding: 'utf8' }); const child = spawnSync(command, args, { encoding: 'utf8' });
return { version: child.stdout }; return child.stdout;
}; };
/** /**