We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dart --version
Dart SDK version: 3.4.3 (stable) (Tue Jun 4 19:51:39 2024 +0000) on "windows_x64"
Maybe related to #449.
I use path dependencies in a git (see https://github.com/LinwoodDev/dart_pkgs/blob/b440166c38b927b6520f2835ceffb860b88faa30/packages/material_leap/pubspec.yaml#L18).
When using
material_leap: git: url: https://github.com/LinwoodDev/dart_pkgs.git ref: 0e04c453c2b6d4aa499f79e54bb1c0b7a9b2c42c path: packages/material_leap
The .lock file has:
dart_leap: dependency: transitive description: path: "packages\\dart_leap" ref: "0e04c453c2b6d4aa499f79e54bb1c0b7a9b2c42c" resolved-ref: "0e04c453c2b6d4aa499f79e54bb1c0b7a9b2c42c" url: "https://github.com/LinwoodDev/dart_pkgs.git" source: git version: "1.0.0"
It should use path: "packages/dart_leap"
path: "packages/dart_leap"
It uses the backslash on windows.
There is no error, it only fetches the dart_leap packages every time when using flutter pub get: Changed 1 dependency!.
flutter pub get
Changed 1 dependency!
The text was updated successfully, but these errors were encountered:
Fix lock, see dart-lang/pub#4314
0a6096d
Yeah - that is broken
Sorry, something went wrong.
Undo path dependency due to a bug in the pub client, see dart-lang/pu…
8dc38c7
…b#4314
Seems it passed to mark to get to the next dart 3.5 beta without a cherry pick!
Successfully merging a pull request may close this issue.
Environment
dart --version
):Dart SDK version: 3.4.3 (stable) (Tue Jun 4 19:51:39 2024 +0000) on "windows_x64"
Maybe related to #449.
Problem
I use path dependencies in a git (see https://github.com/LinwoodDev/dart_pkgs/blob/b440166c38b927b6520f2835ceffb860b88faa30/packages/material_leap/pubspec.yaml#L18).
When using
The .lock file has:
Expected behavior
It should use
path: "packages/dart_leap"
Actual behavior
It uses the backslash on windows.
--trace output
There is no error, it only fetches the dart_leap packages every time when using
flutter pub get
:Changed 1 dependency!
.The text was updated successfully, but these errors were encountered: