gradio/scripts/run_circleci.sh

12 lines
190 B
Bash
Raw Normal View History

2022-02-10 16:25:27 +08:00
#!/bin/bash
if [ -z "$(ls | grep CONTRIBUTING.md)" ]; then
echo "Please run the script from repo directory"
exit -1
else
echo "Running circleci locally"
circleci local execute
fi