M
Matthew Williams
I have the following line in a small app:
exec("charting/RequestByProject.jar",params[:name]')
When run in a UNIX environment it works fine.
However, moving it over to Windows and trying to run:
exec("charting\RequestByProject.jar",params[:name]')
Returns nothing... But if I jump to the Windows command line and run:
RequestByProject.jar project
It runs fine.
Any thoughts why it's not executing from my Ruby code in Windows?
exec("charting/RequestByProject.jar",params[:name]')
When run in a UNIX environment it works fine.
However, moving it over to Windows and trying to run:
exec("charting\RequestByProject.jar",params[:name]')
Returns nothing... But if I jump to the Windows command line and run:
RequestByProject.jar project
It runs fine.
Any thoughts why it's not executing from my Ruby code in Windows?