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