blob: e7dcbd7720bcdb35d5613421635f7159161b7924 [file] [log] [blame] [edit]
#!/usr/bin/env bash
# Copyright 2020 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.
# Build flutter build dashboard.
pushd dashboard > /dev/null
set -e
rm -rf build
flutter doctor -v
flutter pub get
flutter config --enable-web
flutter build web --source-maps
rm -rf ../app_dart/build
cp -r build ../app_dart/build
flutter clean
popd > /dev/null