mirror of
https://github.com/flutter/flutter
synced 2024-11-05 18:37:51 +00:00
14 lines
293 B
Bash
Executable file
14 lines
293 B
Bash
Executable file
#!/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
|