diff options
| author | Stephen Blott | 2016-12-21 05:11:01 +0000 |
|---|---|---|
| committer | GitHub | 2016-12-21 05:11:01 +0000 |
| commit | 3fa11be0a64d5b98f9db8f052c46327aa0cc1deb (patch) | |
| tree | 7df236c76752b7b7f38052362415abd9ccabe222 | |
| parent | 42a1f3ddecfaaab730dca16ce68188c0b81b2ac5 (diff) | |
| parent | f9c3a805b3540b9fb889c3cf29aa996f191e1d55 (diff) | |
| download | vimium-3fa11be0a64d5b98f9db8f052c46327aa0cc1deb.tar.bz2 | |
Merge pull request #2308 from achew22/cake
Don't set the update_url by default.
| -rw-r--r-- | Cakefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -86,7 +86,11 @@ task "package-custom-crx", "build .crx file", -> # ugly hack to modify our manifest file on-the-fly origManifestText = fs.readFileSync "manifest.json" manifest = JSON.parse origManifestText - manifest.update_url = "http://philc.github.com/vimium/updates.xml" + # Update manifest fields that you would like to override here. If + # distributing your CRX outside the Chrome webstore in a fork, please follow + # the instructions available at + # https://developer.chrome.com/extensions/autoupdate. + # manifest.update_url = "http://philc.github.com/vimium/updates.xml" fs.writeFileSync "manifest.json", JSON.stringify manifest pem = process.env.VIMIUM_CRX_PEM ? "vimium.pem" |
