1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 14:05:53 +02:00
.profile/vercel-deploy.sh

12 lines
185 B
Bash
Raw Normal View History

2021-04-20 15:45:47 +02:00
#!/bin/bash
echo "VERCEL_ENV: ${VERCEL_ENV}"
if [[ "${VERCEL_ENV}" == "production" ]]; then
echo "✅ - Build can proceed"
exit 1
else
echo "🛑 - Build cancelled"
exit 0
fi