mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2025-07-21 16:17:57 +02:00
11 lines
129 B
Bash
Executable File
11 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/
|