#!/bin/bash method="patch" if [[ $1 != "" ]]; then method=$1 fi npm version $method if [[ $? != 0 ]]; then exit fi npm run build if [[ $? == 0 ]]; then tar czf cmc_fe.tar.gz dist git add . cmc_fe.tar.gz git commit -m "updated cmc_fe.tar.gz" git push fi