diff --git a/server-api/build.sh b/server-api/build.sh index 1a85f71..330d45c 100755 --- a/server-api/build.sh +++ b/server-api/build.sh @@ -4,6 +4,7 @@ _help() { cat < /dev/null + if [ ! -z $full ];then + cargo test $release_opt + fi } -while getopts ":htTbr" arg; do +while getopts ":fhtTbr" arg; do case ${arg} in + f) full=true;; h) echo help command;; t) testing;; T) testing --release;;