blob: 8ca103f61eea4c0b1cc49c3e6b7b3ba0ee2f2771 [file] [log] [blame]
#!/bin/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 app to generate flutter build dashboard.
pushd app_flutter > /dev/null
rm -rf build
flutter doctor
flutter pub get
flutter config --enable-web
flutter build web --dart-define FLUTTER_WEB_USE_SKIA=true
rm -rf ../app_dart/build
cp -r build ../app_dart/build
flutter clean
popd > /dev/null