19 lines
341 B
Bash
Executable File
19 lines
341 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
not_installed() {
|
|
! command -v $1 > /dev/null 2>&1
|
|
}
|
|
|
|
github_release_resource_dir=$(cd $(dirname $0)/.. && pwd)
|
|
|
|
if not_installed ginkgo; then
|
|
echo "# ginkgo is not installed! run the following command:"
|
|
echo " go install github.com/onsi/ginkgo/ginkgo"
|
|
exit 1
|
|
fi
|
|
|
|
cd $github_release_resource_dir
|
|
ginkgo -r -p
|