mirror of
https://github.com/mozilla/DeepSpeech.git
synced 2025-10-26 11:19:39 +00:00
11 lines
163 B
Bash
11 lines
163 B
Bash
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
THIS=$(dirname "$0")
|
|
|
|
pushd ${THIS}/../
|
|
export PATH=$HOME/.local/bin:${THIS}/../doc/node_modules/.bin/:$PATH
|
|
make -C doc/ html dist
|
|
popd
|