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
Open the new file browser and select "Open terminal here" when you are on a Windows machine:
This fails with an error:
One has to change the method StFileBrowserOpenTerminalCommand>>#openWindowsTerminalOn: from
openWindowsTerminalOn: aPath ^ String streamContents: [ : stream | stream << 'start cmd.exe /K "cd /d '; << aPath; << '"' ]
to
openWindowsTerminalOn: aPath ^ String streamContents: [ : stream | stream << 'start cmd.exe /K "cd /d '; << aPath fullName; << '"' ]
to make it work. Should be fixed before P12 release.
The text was updated successfully, but these errors were encountered:
Need to be fixed in https://github.com/pharo-spec/NewTools
GitHubGitHub - pharo-spec/NewTools: All development tools for Pharo, developed with SpecAll development tools for Pharo, developed with Spec - pharo-spec/NewTools
Sorry, something went wrong.
Thanks for reporting, and the quick fix. PR in pharo-spec/NewTools#732
Merged
@hernanmd thanks for the PR
No branches or pull requests
Open the new file browser and select "Open terminal here" when you are on a Windows machine:
This fails with an error:
One has to change the method StFileBrowserOpenTerminalCommand>>#openWindowsTerminalOn:
from
to
to make it work. Should be fixed before P12 release.
The text was updated successfully, but these errors were encountered: