-
Notifications
You must be signed in to change notification settings - Fork 26
Hardcode exe returned for windows store envs #86
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,14 +63,15 @@ impl PotentialPython { | |
} else { | ||
None | ||
}) | ||
.version(Some(self.version.clone())) | ||
// We only have the partial version, no point returning bogus info. | ||
// .version(Some(self.version.clone())) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Another change to never return bogus information (partial version != valid data) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @karthiknadig /cc |
||
.symlinks(Some(vec![ | ||
parent.join(format!("python{:?}.exe", self.version)), | ||
parent.join(format!("python{}.exe", self.version)), | ||
path.join("python.exe"), | ||
path.join("python3.exe"), | ||
path.join(format!("python{:?}.exe", self.version)), | ||
path.join(format!("python{}.exe", self.version)), | ||
env_path.join("python.exe"), | ||
env_path.join(format!("python{:?}.exe", self.version)), | ||
env_path.join(format!("python{}.exe", self.version)), | ||
])) | ||
.build(), | ||
) | ||
|
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.
Harcoded for windows store
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.
@karthiknadig /cc