UNPKG

corifeus-utils

Version:
7 lines (6 loc) 288 B
module.exports.getVersion = async ({ pkg }) => { const result = await require('./child-process').exec(`snapcraft status ${pkg.name}`) let snapVersion = result.stdout.split('\n')[1].trim().split(/\s+/) snapVersion = snapVersion[snapVersion.length - 2] return snapVersion }