You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.error('updateExtension called with the wrong number of arguments.\nnode updateExtension.js {extName} {extPath} {source}\n\nAnd you should not run it manually anyway');
process.exit(1);
}
let extPath = decodeURI(process.argv[3]);
let extName = decodeURI(process.argv[2]);
let source = decodeURI(process.argv[4]);
let clean = decodeURI(process.argv[5]);
if(clean === "true") {
clean = true;
} else {
clean = false;
}
console.log("Checking for updates to %s (%s)", extName, source);