11 lines
233 B
Bash
11 lines
233 B
Bash
|
#!/usr/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
echo "Building Firefox Extension..."
|
||
|
cd firefox/
|
||
|
jpm xpi --check-memory --profile-memory
|
||
|
cd -
|
||
|
|
||
|
echo "Building Chrome Extension..."
|
||
|
crx pack chrome -o 'chrome/hipchat-emoticons-for-all.crx' -p 'chrome/key.pem'
|