work properly. Wrote two web components. One for cut and paste in general, and another for code samples.
17 lines
333 B
Bash
Executable File
17 lines
333 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
make
|
|
cd bin
|
|
|
|
mkdir -p html
|
|
mkdir -p html/static/css html/static/js html/static/icons html/docs
|
|
|
|
rsync -av ../static/css/ html/static/css/
|
|
rsync -av ../static/js/ html/static/js/
|
|
rsync -av ../static/icons/ html/static/icons/
|
|
mkdir -p html/docs
|
|
rsync -av agent* wsproxy* wstotcp* html/downloads
|
|
./templaterender
|
|
|