I am having some trouble running a few jar\'s on a linux box. Basically, I am getting an error saying it cannot find the main class of my main jar. The class is defenetly presen
The problem is in the following line:
TEST_ROOTDIR = /Test/app
I'm certain that upon executing the script, it'd have emitted an error message saying:
TEST_ROOTDIR: command not found
which you seem to have ignored. Remove the spaces around =
while setting the environment variable. Say:
TEST_ROOTDIR=/Test/app