From 2349031d83f06620c648798502c439cb89dd51ad Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 19 Aug 2015 18:26:21 +0100 Subject: [PATCH] Created template build script --- build.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 build.sh diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..3585754 --- /dev/null +++ b/build.sh @@ -0,0 +1,20 @@ +#!/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