Skip to content

Commit 19c1c8a

Browse files
committed
Fixes broken Eclipse base/bin path
1 parent f74fdff commit 19c1c8a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,11 @@ remove_update_sites () {
202202
# Patches the PDE JAR file to fix a bug with spaces in paths.
203203
# https://github.com/eclipse-pde/eclipse.pde/pull/1709
204204
patch_pde_jar () {
205+
log "Patching PDE JAR."
205206
PDE_JAR_FILE="org.eclipse.pde.core_3.20.100.v20250211-2032.jar"
206207
# Remove original JAR file
207-
rm -f $ECLIPSE_BIN_PATH/plugins/$PDE_JAR_FILE
208-
cp ./patches/$PDE_JAR_FILE $ECLIPSE_BIN_PATH/plugins/$PDE_JAR_FILE
208+
rm -f $ECLIPSE_BASE_PATH/plugins/$PDE_JAR_FILE
209+
cp ./patches/$PDE_JAR_FILE $ECLIPSE_BASE_PATH/plugins/$PDE_JAR_FILE
209210
}
210211

211212
#

0 commit comments

Comments
 (0)