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/build.sh

21 lines
337 B
Bash

#!/bin/bash
# Build script for firefox and chrome plugins
function build_firefox {
echo "Building Firefox extension..."
}
function build_chrome {
echo "Building Chrome extension..."
}
if [ "$1" == "firefox" ]; then
build_firefox
elif [ "$1" == "chrome" ]; then
build_chrome
else
build_firefox
build_chrome
fi