You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
|
|
command -v goconvey >/dev/null 2>&1 || { |
|
echo >&2 "required goconvey but it's not installed."; |
|
echo "Aborting."; |
|
echo "Please run commond: go get github.com/smartystreets/goconvey"; |
|
exit 1; |
|
} |
|
|
|
cd ../videoup |
|
goconvey -excludedDirs "vendor,node_modules,rpc" -packages 1 |