mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
b055a95201
Helps avoid issues like #703 by emphasizing uninstalling is not required.
13 lines
415 B
JavaScript
13 lines
415 B
JavaScript
var manifest = require('../app/manifest.json')
|
|
var version = manifest.version
|
|
|
|
var fs = require('fs')
|
|
var path = require('path')
|
|
var changelog = fs.readFileSync(path.join(__dirname, '..', 'CHANGELOG.md')).toString()
|
|
|
|
var log = changelog.split(version)[1].split('##')[0].trim()
|
|
|
|
let msg = `*MetaMask ${version}* now published to the Chrome Store! It should auto-update over the next hour!\n${log}`
|
|
|
|
console.log(msg)
|