mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
12 lines
214 B
Bash
Executable File
12 lines
214 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
export PATH="$PWD/bin:$PWD/bin/cache/dart-sdk/bin:$PATH"
|
|
|
|
if [ "$TRAVIS_OS_NAME" = "linux" ] && \
|
|
[ "$SHARD" = "docs" ]; then
|
|
# generate the API docs, upload them
|
|
./dev/bots/docs.sh
|
|
fi
|