mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 00:23:30 +01:00
12 lines
183 B
Bash
Executable File
12 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$VERCEL_GIT_COMMIT_REF" == "main" ]]; then
|
|
# Proceed with the build
|
|
echo "✅ - Proceed"
|
|
exit 1;
|
|
else
|
|
# Don't build
|
|
echo "🛑 - Build cancelled"
|
|
exit 0;
|
|
fi
|