mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2026-01-24 02:35:34 +00:00
18 lines
267 B
Bash
Executable file
18 lines
267 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# clear previous build
|
|
rm -rf /build/*
|
|
|
|
# build webpack
|
|
npm run build
|
|
# remove node stuff from directory
|
|
rm -rf node_modules/
|
|
# copy all to build dir
|
|
cp -R ./* /build/
|
|
|
|
# remove unneccesary files
|
|
cd /build
|
|
rm *.md
|
|
rm AUTHORS
|
|
rm vnc.html
|
|
rm vnc_lite.html
|