-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
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
Support running pub when it's not on the environment path #26
Conversation
import 'package:pub_semver/pub_semver.dart'; | ||
|
||
final supportedBuildRunnerVersionRange = new VersionRange( | ||
min: new Version(0, 8, 0), | ||
includeMin: true, | ||
max: new Version(0, 9, 0), | ||
includeMax: false); | ||
|
||
/// The path to the root directory of the SDK. | ||
final String _sdkDir = (() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we be doing this instead of using cli_util?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not worth the dependency for a one-line method.
You need to replace |
Works fine for me now! |
No description provided.