Files
gitea-release-resource/scripts/test
2016-06-21 08:00:20 -07:00

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