mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 04:09:12 +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
|