Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 145824
Collapse All | Expand All

(-)master/bash/rmt-add-plugins-to-ac.sh (+18 lines)
Lines 132-137 Link Here
132
cd $wkspc
132
cd $wkspc
133
rm -rf $rmt_tmp
133
rm -rf $rmt_tmp
134
134
135
# add tptpcore.jar to AC bin/ directory (bug #145824)
136
#
137
mkdir -p $rmt_tmp
138
cd $rmt_tmp
139
unzip -q -o -j $rmt_storage/tptp.platform.runtime-$timestamp.zip eclipse/plugins/org.eclipse.tptp.platform.execution_\*tptpcore.jar -d bin
140
if [ $? == 0 ]; then
141
    for rmt_target in $rmt_targets; do
142
        # temporal solution to use several attemts to zip because
143
        # zip is unstable on dev.eclipse.org causing "zip error: Temporary file failure"
144
        for i in 1 2 3 4 5; do
145
            zip -9 -q -r -y $rmt_storage/$rmt_target-$timestamp.zip bin/tptpcore.jar && break
146
        done
147
        let "exitcode=$exitcode|$?"
148
    done
149
fi
150
cd $wkspc
151
rm -rf $rmt_tmp
152
135
# report problems, if any
153
# report problems, if any
136
#
154
#
137
exit $exitcode
155
exit $exitcode

Return to bug 145824