| #!/bin/bash | |
| # Copyright 2020 The Chromium Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| # TODO(jacobr): use a consistent version solve across all packages like | |
| # flutter does. https://github.com/flutter/devtools/issues/2240 | |
| pushd packages | |
| pushd devtools | |
| flutter pub upgrade | |
| popd | |
| pushd devtools_app | |
| flutter pub upgrade | |
| popd | |
| pushd devtools_server | |
| flutter pub upgrade | |
| popd | |
| pushd devtools_shared | |
| flutter pub upgrade | |
| popd | |
| popd |