9 lines
93 B
Bash
9 lines
93 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
cd /app
|
|
|
|
npm run build
|
|
mkdir -p /out
|
|
mv -f /app/dist/*.zip /out/
|