Re: Silly Sculpt Build Problem

2021-12-15 Thread John J. Karcher
On 12/15/21 09:38, Norman Feske wrote: Hi John, "command" is an bash built-in command and can't be executed by Tcl/Expect directly. With the following small change to the line above your second patch is unnecessary.    if { [catch {set path [exec bash -c "command -v $command"]}] == 0} { Tha

Re: Silly Sculpt Build Problem

2021-12-15 Thread Norman Feske
Hi John, >> "command" is an bash built-in command and can't be executed by >> Tcl/Expect directly. With the following small change to the line above >> your second patch is unnecessary. >> >>    if { [catch {set path [exec bash -c "command -v $command"]}] == 0} { > > That solved it.  I knew it wa