R
RichardOnRails
I've got a 3-line bat file:
rake ready_for_the_day
@echo ------
rake COFFEE_CUPS=5 make_coffee
(BTW: Rake is Ruby's version of make: it invokes Ruby commands rather
the U*ix cmds. The arguments identify a task within a Rakefile in the
current directory, possibly with settings for environment variables)
The above ,bat file invokes the first command successfully, AFAIK, and
then quits
When I comment out the first cmd with a leading colon the echo works,
as does the 2nd cmd
Could a Rake.exe shut down the batch cmd that invoked it. If so, is
there any way I could insulate the batch command file from such a
shutdown attempt?
Thanks in Advance,
Richard
rake ready_for_the_day
@echo ------
rake COFFEE_CUPS=5 make_coffee
(BTW: Rake is Ruby's version of make: it invokes Ruby commands rather
the U*ix cmds. The arguments identify a task within a Rakefile in the
current directory, possibly with settings for environment variables)
The above ,bat file invokes the first command successfully, AFAIK, and
then quits
When I comment out the first cmd with a leading colon the echo works,
as does the 2nd cmd
Could a Rake.exe shut down the batch cmd that invoked it. If so, is
there any way I could insulate the batch command file from such a
shutdown attempt?
Thanks in Advance,
Richard