summaryrefslogtreecommitdiff
path: root/service/go
diff options
context:
space:
mode:
Diffstat (limited to 'service/go')
-rwxr-xr-xservice/go34
1 files changed, 5 insertions, 29 deletions
diff --git a/service/go b/service/go
index 0183c7b2..25661508 100755
--- a/service/go
+++ b/service/go
@@ -1,31 +1,7 @@
#!/bin/bash
-if [ "$1" == 'test' ]; then
- set -e
- pushd ..
- make test_py
- popd
-elif [ "$1" == 'pep8' ]; then
- set -e
- pushd ..
- make linters_js
- popd
-elif [ "$1" == 'setup' ]; then
- set -e
- pushd ..
- make setup
- popd
-elif [ "$1" == 'coverage_all' ]; then
- set -e
- pushd ..
- make coverage
- popd
-elif [ "$1" == "functional" ]; then
- set -e
- pushd ..
- make test_functional
- popd
-else
- echo "Command doesn't exist"
- exit 1
-fi
+type -t deactivate && deactivate
+set -e
+pushd ..
+make $*
+popd