mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Removed the host prefix as this inhibits correct error parsing by intelligent editors.
This commit is contained in:
@ -210,11 +210,11 @@ do
|
||||
retval=$?
|
||||
else
|
||||
if [ "$host" = "$HOST" ]; then
|
||||
eval $* 2>&1
|
||||
eval $* 2>&1 | prefixPipe "$host"
|
||||
elif [ -n "$JOB_ID" ]; then
|
||||
qrsh -inherit -v PWD $host "$rcmd"
|
||||
qrsh -inherit -v PWD $host "$rcmd" | prefixPipe "$host"
|
||||
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
|
||||
retval=$?
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user