Skip to content
Snippets Groups Projects
Commit bd787085 authored by Mark Olesen's avatar Mark Olesen
Browse files

just use plain ssh for GridEngine compilation

parent b22ada09
Branches
Tags
No related merge requests found
...@@ -190,8 +190,6 @@ do ...@@ -190,8 +190,6 @@ do
if [ "$host" = "$HOST" ]; then if [ "$host" = "$HOST" ]; then
eval $* 2>&1 | colourPipe "$colour" eval $* 2>&1 | colourPipe "$colour"
elif [ -n "$JOB_ID" ]; then
qrsh -inherit -v PWD $host "$rcmd"
else else
ssh $host "$sourceFoam 2>/dev/null; cd $PWD && $rcmd" 2>&1 | colourPipe "$colour" ssh $host "$sourceFoam 2>/dev/null; cd $PWD && $rcmd" 2>&1 | colourPipe "$colour"
fi fi
...@@ -199,8 +197,6 @@ do ...@@ -199,8 +197,6 @@ do
else else
if [ "$host" = "$HOST" ]; then if [ "$host" = "$HOST" ]; then
eval $* 2>&1 eval $* 2>&1
elif [ -n "$JOB_ID" ]; then
qrsh -inherit -v PWD $host "$rcmd"
else else
ssh $host "$sourceFoam 2>/dev/null; cd $PWD && $rcmd" 2>&1 ssh $host "$sourceFoam 2>/dev/null; cd $PWD && $rcmd" 2>&1
fi fi
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment