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 175260
Collapse All | Expand All

(-)a/ide/launcher/unix/netbeans (-3 / +3 lines)
Lines 91-99 Link Here
91
readClusters() {
91
readClusters() {
92
    grep -v "^#" "$progdir"/../etc/netbeans.clusters | grep -v "^$" | grep -v platform | while read X; do
92
    grep -v "^#" "$progdir"/../etc/netbeans.clusters | grep -v "^$" | grep -v platform | while read X; do
93
        if expr "$X" : "/.*" >/dev/null; then
93
        if expr "$X" : "/.*" >/dev/null; then
94
            echo $X
94
            echo "$X"
95
        else
95
        else
96
            echo $progdir/../$X
96
            echo "$progdir/../$X"
97
        fi
97
        fi
98
    done
98
    done
99
}
99
}
Lines 103-109 Link Here
103
        if [ -d "$path" ]; then
103
        if [ -d "$path" ]; then
104
            (cd "$path" 2>/dev/null && pwd)
104
            (cd "$path" 2>/dev/null && pwd)
105
        else
105
        else
106
            echo $path
106
            echo "$path"
107
        fi
107
        fi
108
    done
108
    done
109
}
109
}
(-)a/o.n.bootstrap/launcher/unix/nbexec (-1 / +1 lines)
Lines 273-279 Link Here
273
}
273
}
274
274
275
do_run_updater() {
275
do_run_updater() {
276
    eval "\"$jdkhome/bin/java\"" -classpath "\"${updatercp}\"" $jargs "-Dnetbeans.user=\"$userdir\"" $updater_class "$args"
276
    eval "\"$jdkhome/bin/java\"" -classpath "\"${updatercp}\"" "$jargs" "-Dnetbeans.user=\"$userdir\"" $updater_class "$args"
277
    construct_cp
277
    construct_cp
278
}
278
}
279
279

Return to bug 175260