mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 15:36:58 +00:00
8 lines
146 B
Bash
Executable File
8 lines
146 B
Bash
Executable File
#!/bin/sh
|
|
|
|
yarn build
|
|
|
|
if [ "$?" != 0 ]; then
|
|
printf "\n\n\033[31mBuild error found. Please resolve this to move forward\033[0m\n\n"
|
|
exit 1
|
|
fi |