We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f74fdff commit 19c1c8aCopy full SHA for 19c1c8a
build.sh
@@ -202,10 +202,11 @@ remove_update_sites () {
202
# Patches the PDE JAR file to fix a bug with spaces in paths.
203
# https://github.com/eclipse-pde/eclipse.pde/pull/1709
204
patch_pde_jar () {
205
+ log "Patching PDE JAR."
206
PDE_JAR_FILE="org.eclipse.pde.core_3.20.100.v20250211-2032.jar"
207
# Remove original JAR file
- rm -f $ECLIPSE_BIN_PATH/plugins/$PDE_JAR_FILE
208
- cp ./patches/$PDE_JAR_FILE $ECLIPSE_BIN_PATH/plugins/$PDE_JAR_FILE
+ rm -f $ECLIPSE_BASE_PATH/plugins/$PDE_JAR_FILE
209
+ cp ./patches/$PDE_JAR_FILE $ECLIPSE_BASE_PATH/plugins/$PDE_JAR_FILE
210
}
211
212
#
0 commit comments