mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 15:40:22 +00:00
18 lines
317 B
Bash
18 lines
317 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
./gen_docs.sh
|
||
|
|
|
||
|
|
rm build/docs/index.html
|
||
|
|
rm -rf build/docs/css
|
||
|
|
rm -rf build/docs/js
|
||
|
|
rm -rf build/docs/img
|
||
|
|
rm -rf build/docs/examples
|
||
|
|
|
||
|
|
cd build/docs
|
||
|
|
|
||
|
|
ln -s ../../docs/src/templates/index.html
|
||
|
|
ln -s ../../docs/src/templates/css
|
||
|
|
ln -s ../../docs/src/templates/js
|
||
|
|
ln -s ../../docs/img
|
||
|
|
ln -s ../../docs/examples
|