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
Currently we write the binstub, and chmod it to be executable. There is a race here with concurrent invocations. (see flutter/flutter#144408)
chmod
Instead we could write it to a temp-location, chmod it and move it to PUB_CACHE/bin atomically.
The text was updated successfully, but these errors were encountered:
Seems we already do this.
pub/lib/src/global_packages.dart
Lines 847 to 867 in ed20b45
Was done in #3285
Sorry, something went wrong.
No branches or pull requests
Currently we write the binstub, and
chmod
it to be executable. There is a race here with concurrent invocations. (see flutter/flutter#144408)Instead we could write it to a temp-location, chmod it and move it to PUB_CACHE/bin atomically.
The text was updated successfully, but these errors were encountered: