Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2014-05-23 01:15:42 +0000
committerPascal Rapicault2014-05-23 01:16:32 +0000
commit72c0bc17545f67c8fab74863871eee1814cf467e (patch)
tree49505dbb8fe1a40427ec2af78df9a9f551c773e8
parentdebe23f2c9fa640f04cb61105a8f001ce8b59ba3 (diff)
downloadrt.equinox.p2-72c0bc17545f67c8fab74863871eee1814cf467e.tar.gz
rt.equinox.p2-72c0bc17545f67c8fab74863871eee1814cf467e.tar.xz
rt.equinox.p2-72c0bc17545f67c8fab74863871eee1814cf467e.zip
Change-Id: Id595d453c624c12cfbdec422b71410d6898e629f Signed-off-by: Pascal Rapicault <pascal.rapicault@ericsson.com>
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/BackupStore.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/BackupStore.java b/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/BackupStore.java
index 5e452bc27..2bfb6c830 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/BackupStore.java
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/BackupStore.java
@@ -283,7 +283,7 @@ public class BackupStore implements IBackupStore {
}
private boolean isEclipseExe(File file) {
- return file.getName().equals("eclipse.exe") || file.getName().equals("Eclipse.exe"); //$NON-NLS-1$ //$NON-NLS-2$
+ return file.getName().equalsIgnoreCase("eclipse.exe") || file.getName().equalsIgnoreCase("eclipsec.exe"); //$NON-NLS-1$ //$NON-NLS-2$
}
protected boolean moveToBackupStore(File file, File buFile) {

Back to the top