mirror of
https://github.com/flutter/packages.git
synced 2025-08-06 17:28:42 +08:00

Updates tool pin to 0.7.3 - Enables versiond and CHANGELOG update checks. - Enables timing logging. Changes to allow the roll to pass: - Adds missing licenses to Kotlin files (which were not previously checked). - Adds missing AUTHORS files. - Adjusts package descriptions to meet pub.dev length guidelines, which the tooling now enforces.
14 lines
453 B
Bash
Executable File
14 lines
453 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2013 The Flutter Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
set -e
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
|
|
REPO_DIR="$(dirname "$SCRIPT_DIR")"
|
|
|
|
# The tool expects to be run from the repo root.
|
|
cd "$REPO_DIR"
|
|
dart pub global run flutter_plugin_tools "$@" --packages-for-branch \
|
|
--log-timing $BUILD_SHARDING
|