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

This commit is contained in:
henry
2008-10-16 21:42:18 +01:00
parent c7968294f0
commit 3e6401f862

View File

@ -210,11 +210,11 @@ do
retval=$?
else
if [ "$host" = "$HOST" ]; then
eval $* 2>&1 | prefixPipe "$host"
eval $* 2>&1
elif [ -n "$JOB_ID" ]; then
qrsh -inherit -v PWD $host "$rcmd" | prefixPipe "$host"
qrsh -inherit -v PWD $host "$rcmd"
else
ssh $host "$sourceFoam 2>/dev/null; cd $PWD && $rcmd" 2>&1 | prefixPipe "$host"
ssh $host "$sourceFoam 2>/dev/null; cd $PWD && $rcmd" 2>&1
fi
retval=$?
fi