mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
12 lines
190 B
Bash
12 lines
190 B
Bash
|
#!/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
|
||
|
|
||
|
|
||
|
|