1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-18 21:55:52 +02:00
.profile/vercel-deploy.sh
2021-04-20 15:45:47 +02:00

12 lines
185 B
Bash
Executable File

#!/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