mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-10 07:16:33 -04:00
6 lines
182 B
Bash
Executable file
6 lines
182 B
Bash
Executable file
#!/bin/sh
|
|
dest=generated/static/docs
|
|
typedoc --out $dest src --ignoreCompilerErrors
|
|
find $dest -name *.html -exec ./scripts/commandline_injector.sh '{}' \;
|
|
cp -r $dest build/static/
|