mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2025-10-04 13:52:07 +08:00
10 lines
129 B
Bash
Executable file
10 lines
129 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# clear previous build
|
|
rm -rf /build/*
|
|
|
|
# build webpack
|
|
npm run build
|
|
|
|
# copy all to build dir
|
|
cp -R ./dist/* /build/
|