add an infra/docs.sh script (#3674)

This commit is contained in:
Devon Carew 2016-05-02 14:33:39 -07:00
parent 30d8dc1399
commit cd8f65dfb3

14
infra/docs.sh Executable file
View file

@ -0,0 +1,14 @@
#!/bin/bash
set -ex
# Install dartdoc.
pub global activate dartdoc
# Generate flutter docs into dev/docs/doc/api/.
(cd dev/tools; pub get)
dart dev/tools/dartdoc.dart
# Upload the docs.
if [ "$1" = "--upload" ]; then
gsutil -m rsync -d -r dev/docs/doc/api gs://docs.flutter.io/flutter
fi