Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2011-10-03 13:06:59 +0000
committerThomas Watson2011-10-03 13:06:59 +0000
commitadaae623cd251d19edee037b0b751095cb4d229f (patch)
tree7d8813cdaf0f0de1089b5ccf0204bf12687017ec
parent94ef91d26bf71f7a07e69a52882cecbe388fd97b (diff)
downloadrt.equinox.incubator-adaae623cd251d19edee037b0b751095cb4d229f.tar.gz
rt.equinox.incubator-adaae623cd251d19edee037b0b751095cb4d229f.tar.xz
rt.equinox.incubator-adaae623cd251d19edee037b0b751095cb4d229f.zip
scope the call to felix:help to prevent endless recursion.
-rw-r--r--console/org.eclipse.equinox.console.supportability/src/org/eclipse/equinox/console/commands/HelpCommand.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/console/org.eclipse.equinox.console.supportability/src/org/eclipse/equinox/console/commands/HelpCommand.java b/console/org.eclipse.equinox.console.supportability/src/org/eclipse/equinox/console/commands/HelpCommand.java
index a0368482..a1ca8f09 100644
--- a/console/org.eclipse.equinox.console.supportability/src/org/eclipse/equinox/console/commands/HelpCommand.java
+++ b/console/org.eclipse.equinox.console.supportability/src/org/eclipse/equinox/console/commands/HelpCommand.java
@@ -148,7 +148,7 @@ public class HelpCommand {
}
if (isLegacy == false && command != null) {
- session.execute("help " + command);
+ session.execute("felix:help " + command);
return;
}
@@ -159,11 +159,11 @@ public class HelpCommand {
if (isAll == true) {
printLegacyCommands();
- session.execute("help");
+ session.execute("felix:help");
return;
}
- session.execute("help");
+ session.execute("felix:help");
}
private void printLegacyCommands() {

Back to the top