We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5b2685 commit 6b80edcCopy full SHA for 6b80edc
objectbox/tool/integration-test.sh
@@ -15,7 +15,9 @@ cd "${root}/$1"
15
flutter clean
16
flutter pub get
17
18
-flutter pub run build_runner build --delete-conflicting-outputs
+# Flutter ~2.0 fails: The pubspec.lock file has changed since the .dart_tool/package_config.json file was generated, please run "pub get" again.
19
+generateCmd="flutter pub run build_runner build --delete-conflicting-outputs"
20
+$generateCmd || (flutter pub get && $generateCmd)
21
22
# flutter drive is currently not available in GitHub Actions (TODO start an emulator/simulator?)
23
if [[ "${GITHUB_ACTIONS:-}" == "" ]]; then
0 commit comments