Skip to content
Snippets Groups Projects
Commit 1f8bf1ba authored by henry's avatar henry
Browse files

Removed the host prefix as this inhibits correct error parsing by intelligent editors.

parent 3e6401f8
No related branches found
No related tags found
No related merge requests found
...@@ -210,11 +210,11 @@ do ...@@ -210,11 +210,11 @@ do
retval=$? retval=$?
else else
if [ "$host" = "$HOST" ]; then if [ "$host" = "$HOST" ]; then
eval $* 2>&1 eval $* 2>&1 | prefixPipe "$host"
elif [ -n "$JOB_ID" ]; then elif [ -n "$JOB_ID" ]; then
qrsh -inherit -v PWD $host "$rcmd" qrsh -inherit -v PWD $host "$rcmd" | prefixPipe "$host"
else else
ssh $host "$sourceFoam 2>/dev/null; cd $PWD && $rcmd" 2>&1 ssh $host "$sourceFoam 2>/dev/null; cd $PWD && $rcmd" 2>&1 | prefixPipe "$host"
fi fi
retval=$? retval=$?
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment