Is it possible to pass in command-line args containing spaces to rake? I'm
on XP, and "..." and '...' don't work.
rake arg="foo bar" #=> ENV['arg'] = nil
rake arg='foo bar' #=> ENV['arg'] = nil
rake arg=foo bar #=> ENV['arg'] = foo
Thanks
Is it possible to pass in command-line args containing spaces to rake? I'm
on XP, and "..." and '...' don't work.
rake arg="foo bar" #=> ENV['arg'] = nil
rake arg='foo bar' #=> ENV['arg'] = nil
rake arg=foo bar #=> ENV['arg'] = foo
Thanks
Turned out to be a JEdit problem (it has various kinds of trouble emulating
a command line), nothing to do with rake. It works fine with "..." from a
DOS shell.
"itsme213" <itsme213@hotmail.com> wrote
Is it possible to pass in command-line args containing spaces to rake? I'm
on XP, and "..." and '...' don't work.