Skip to content
This repository has been archived by the owner on Feb 29, 2020. It is now read-only.

Commit

Permalink
chore(meta): drop plural from activity stream in addon metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
oyiptong committed May 9, 2016
1 parent b4233cc commit 86405f7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

env.bucket_name = "moz-activity-streams"
env.bucket_name_dev = "moz-activity-streams-dev"
env.amo_addon_name = "activity_streams_experiment"
S3 = boto.connect_s3()

DEV_BUCKET_URL = "https://moz-activity-streams-dev.s3.amazonaws.com"
Expand All @@ -25,7 +26,7 @@ def make_dev_manifest(fresh_manifest=True):
with open("./package.json", "r+") as f:
current_time = int(time.time())
manifest = json.load(f)
manifest["title"] = "{} dev".format(manifest["title"])
manifest["title"] = "{} Dev".format(manifest["title"])
manifest["updateLink"] = DEV_UPDATE_LINK
manifest["updateURL"] = DEV_UPDATE_URL
manifest["version"] = "{}-dev-{}".format(
Expand Down Expand Up @@ -71,7 +72,7 @@ def package(signing_key, signing_password):
local("./node_modules/jpm/bin/jpm sign --api-key {} --api-secret {}"
.format(signing_key, signing_password))
print "signing successful!"
local("mv activity_streams_experiment-*.xpi dist/")
local("mv {}-*.xpi dist/".format(env.amo_addon_name))
local("mv \@activity-streams-*.update.rdf dist/update.rdf")
local("rm dist/activity-streams-*.xpi")

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "1.0.15",
"author": "Mozilla (https://mozilla.org/)",
"bugs": {
"url": "https://github.com/mozilla/activity-streams/issues"
"url": "https://github.com/mozilla/activity-stream/issues"
},
"dependencies": {
"classnames": "2.2.3",
Expand Down Expand Up @@ -72,12 +72,12 @@
"engines": {
"firefox": ">=45.0 <=*"
},
"homepage": "https://github.com/mozilla/activity-streams",
"homepage": "https://github.com/mozilla/activity-stream",
"icon": "resource://activity-streams/data/content/img/ActivityStream-32.svg",
"keywords": [
"mozilla",
"firefox",
"activity-streams"
"activity-stream"
],
"license": "MPL-2.0",
"main": "lib/main.js",
Expand Down Expand Up @@ -129,7 +129,7 @@
"hidden": true
}
],
"repository": "mozilla/activity-streams",
"repository": "mozilla/activity-stream",
"scripts": {
"once": "npm run bundle && npm run firefox",
"clean": "rimraf data/content/* && mkdirp data/content",
Expand Down Expand Up @@ -166,7 +166,7 @@
"yamscripts": "yamscripts compile",
"__": "# NOTE: THESE SCRIPTS ARE COMPILED!!! EDIT yamscripts.yml instead!!!"
},
"title": "activity-streams-experiment",
"title": "Activity Stream",
"updateLink": "https://moz-activity-streams.s3.amazonaws.com/dist/activity-streams-latest.xpi",
"updateURL": "https://moz-activity-streams.s3.amazonaws.com/dist/update.rdf",
"permissions": {
Expand Down

0 comments on commit 86405f7

Please sign in to comment.