ci: add the ability to lock ci from running

This commit is contained in:
Aaron Bieber 2023-07-18 20:28:18 -06:00
parent 6516917613
commit 91d748e655
No known key found for this signature in database

5
bin/ci
View File

@ -2,6 +2,11 @@
. ./common.sh
if [ -f ./lock ]; then
msg "${SCRIPT_NAME} locked..."
exit 0
fi
direnv allow
CMD=${1:-""}