mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 20:19:13 +00:00
9 lines
144 B
Bash
9 lines
144 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if [[ $VERCEL_GIT_COMMIT_REF == "alpha" ]] ; then
|
||
|
|
echo "Running the alpha build!"
|
||
|
|
npm run build:alpha
|
||
|
|
else
|
||
|
|
npm run build
|
||
|
|
fi
|