This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 71150
Collapse All | Expand All

(-)apisupport/harness/release/launchers/app.sh (-2 / +7 lines)
Lines 49-58 Link Here
49
fi
49
fi
50
50
51
readClusters() {
51
readClusters() {
52
  if [ -x /usr/ucb/echo ]; then
53
    echo=/usr/ucb/echo
54
  else
55
    echo=echo
56
  fi
52
  sep=""
57
  sep=""
53
  while read X; do 
58
  while read X; do 
54
    echo -n $sep
59
    $echo -n $sep
55
    echo -n "$progdir/../$X"
60
    $echo -n "$progdir/../$X"
56
    sep=":"
61
    sep=":"
57
  done
62
  done
58
}
63
}

Return to bug 71150