Merge branch 'bstable'

This commit is contained in:
ccd0 2017-10-08 19:20:22 -07:00
commit e4e7bbea7e

View File

@ -9,7 +9,7 @@ var secrets = JSON.parse(fs.readFileSync(`../${pkg.meta.path}.keys/chrome-store.
request(`https://chrome.google.com/webstore/detail/${pkg.meta.chromeStoreID}`, function (error, response, body) {
if (body && body.indexOf(`<meta itemprop="version" content="${v.version}" />`) > 0 && process.argv[2] !== 'force') {
if (body && body.indexOf(`<meta itemprop="version" content="${v.version}"/>`) > 0 && process.argv[2] !== 'force') {
console.log(`Version ${v.version} already uploaded.`);
return;
}