mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
12 lines
247 B
Bash
12 lines
247 B
Bash
#!/bin/bash
|
|
|
|
echo "VERCEL_GIT_COMMIT_REF: $VERCEL_GIT_COMMIT_REF"
|
|
|
|
if [[ "$VERCEL_GIT_COMMIT_REF" == "master" || "$VERCEL_GIT_COMMIT_REF" == "development" ]]; then
|
|
echo "✅ - Build can proceed"
|
|
exit 1
|
|
else
|
|
echo "🛑 - Build cancelled"
|
|
exit 0
|
|
fi
|