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
When using another drive on Windows D: or even c: the plugin is not working correct.
Please replace in WithPythonEnvStep.java (line 73)
String postfix = pythonInstallation.replaceAll("/", "-") .replaceFirst("C:\\\\", "") .replaceAll("\\\\", "-");
with
String postfix = pythonInstallation.replaceAll("/", "-") .replaceFirst("[a-zA-Z]:\\\\", "") .replaceAll("\\\\", "-");
The text was updated successfully, but these errors were encountered:
Thank you for bringing this to my attention. I've fixed it and am closing this issue.
Always feel free to submit a pull request, especially for small stuff like this.
Sorry, something went wrong.
No branches or pull requests
When using another drive on Windows D: or even c: the plugin is not working correct.
Please replace in WithPythonEnvStep.java (line 73)
with
The text was updated successfully, but these errors were encountered: