mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00
5 lines
182 B
Bash
Executable file
5 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/
|