1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
hipchat-emoticons-for-all/scripts/release.sh

17 lines
369 B
Bash
Raw Normal View History

#!/usr/bin/bash
set -e
echo "Building Firefox Extension..."
cd firefox/
jpm xpi --check-memory --profile-memory
cd -
echo "Building Chrome Extension..."
2015-10-05 15:52:45 +01:00
crx pack chrome -o 'chrome/hipchat-emoticons-for-all.crx' -p 'chrome/key.pem'
echo "Zipping Chrome Extension..."
cd chrome
zip 'release.zip' -1 -9 -T 'hipchat-emoticons-for-all.crx' 'manifest.json' 'data/*'
2015-10-07 17:39:32 +01:00
cd -