Skip to content

Commit bd6368f

Browse files
committed
Fix flutter_isolate dependency
Fixes below error: ``` [package:bluebubbles] flutter pub get --no-example Resolving dependencies... Git error. Command: `git clone --mirror https://github.com/chipweinberger/flutter_isolate.git C:\Users\qaisjp\AppData\Local\Pub\Cache\_temp\dir2a77a5dc` stdout: stderr: Cloning into bare repository 'C:\Users\qaisjp\AppData\Local\Pub\Cache\_temp\dir2a77a5dc'... remote: Repository not found. fatal: repository 'https://github.com/chipweinberger/flutter_isolate.git/' not found exit code: 128 Failed to update packages. exit code 69 ``` The commit still exists on the upstream repo and can be accessed directly from its sha. The commit will never be garbage collected because it's a part of the pull request commit list here: rmawatson/flutter_isolate#152
1 parent 547c737 commit bd6368f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -906,9 +906,9 @@ packages:
906906
dependency: "direct main"
907907
description:
908908
path: "."
909-
ref: "user/chip/update-examples"
909+
ref: bf7deabbb1aaa3cff785b636d9f4717d4fe202d9
910910
resolved-ref: bf7deabbb1aaa3cff785b636d9f4717d4fe202d9
911-
url: "https://github.com/chipweinberger/flutter_isolate.git"
911+
url: "https://github.com/rmawatson/flutter_isolate.git"
912912
source: git
913913
version: "2.0.5-pre"
914914
flutter_keyboard_visibility:

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ dependencies:
7171
flutter_dotenv: ^5.1.0
7272
flutter_image_compress: ^2.2.0
7373
flutter_improved_scrolling: ^0.0.3
74-
flutter_isolate: # gradle namespace issue
74+
flutter_isolate: # gradle namespace issue, https://github.com/rmawatson/flutter_isolate/pull/152
7575
git:
76-
url: https://github.com/chipweinberger/flutter_isolate.git
77-
ref: user/chip/update-examples
76+
url: https://github.com/rmawatson/flutter_isolate.git
77+
ref: bf7deabbb1aaa3cff785b636d9f4717d4fe202d9
7878
flutter_keyboard_visibility: ^6.0.0 # no desktop support
7979
flutter_local_notifications: ^17.2.1+2 # mobile only
8080
flutter_map: ^7.0.1

0 commit comments

Comments
 (0)