Glenn Swanlund wrote:
On Windows 7, I'm trying to install OmniBase in Pharo-30846. I get an
error for ExternalWindowsOSProcess >> doesNotUnderstand defaultShellPath.
Does anyone have a solution for this?
Regards,
Glenn
At a guess you could start by defining...
ExternalWindowsOSProcess >>defaultShellPath
"Default shell to run"\
| path |
path := 'C:\Windows\System32\cmd.exe'.
(OSProcess fileExists: path)
ifTrue: [^ path]
ifFalse: [self notify: path, ' not found']
but then whatever passed to an expected unix shell might not be suitable
for the windows shell.
Alternatively maybe Cygwin needs to be installed and used ?
HTH, ben