From 25f1f5aac4888c761d7a722b048effbf9ca6a8cc Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Thu, 20 Aug 2015 14:34:10 +0100 Subject: [PATCH] Fix distribute command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index cb2f907..cfdbc09 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "build-chrome": "crx pack chrome -o hipchat-emoticons-for-all.crx -p chrome/key.pem", "build-js": "bash build-js.sh", "build-data-files": "python firefox/build-package.py && python chrome/build-manifest.py", - "distribute": "cp build/* firefox/data/ && cp build/* chrome/data/", + "distribute": "cp -r build/* firefox/data/ && cp -r build/* chrome/data/", "build": "npm run clean && npm run create-dirs && npm install && npm run build-js && npm run distribute && npm run build-data-files && npm run build-extensions", "clean": "rm -rf firefox/data chrome/data node_modules/" },