11 lines
184 B
Bash
11 lines
184 B
Bash
#!/bin/bash
|
|
|
|
OUTPUT=$(npx vite build --minify false --logLevel error --outDir /workspace/.dist 2>&1)
|
|
EXIT_CODE=$?
|
|
|
|
if [ $EXIT_CODE -ne 0 ]; then
|
|
echo "$OUTPUT"
|
|
fi
|
|
|
|
exit $EXIT_CODE
|