gradio/scripts/run_circleci.sh
Ömer Faruk Özdemir 47b4b69290 Format-The-Codebase
- update scripts
2022-02-10 11:25:27 +03:00

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