From: kh5325.kim Date: Wed, 10 Apr 2013 12:04:53 +0000 (+0900) Subject: Fix command to delete item in connection explorer X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=933fe0e1149a89ae561d961990c74bc15e23bb66;p=sdk%2Fide%2Fcommon-eplugin.git Fix command to delete item in connection explorer --- diff --git a/org.tizen.common.connection/src/org/tizen/common/connection/explorer/ConnectionExplorerPanel.java b/org.tizen.common.connection/src/org/tizen/common/connection/explorer/ConnectionExplorerPanel.java index 4957832..0688f39 100755 --- a/org.tizen.common.connection/src/org/tizen/common/connection/explorer/ConnectionExplorerPanel.java +++ b/org.tizen.common.connection/src/org/tizen/common/connection/explorer/ConnectionExplorerPanel.java @@ -630,7 +630,7 @@ public class ConnectionExplorerPanel extends Panel implements IDeviceChangeListe command = String.format("rm -rf %s; echo $?", FilenameUtil.addDoubleQuote(entry.getFullEscapedPath())); } else { - command = String.format("rm %s; echo $?", FilenameUtil.addDoubleQuote(entry.getFullEscapedPath())); + command = String.format("rm -f %s; echo $?", FilenameUtil.addDoubleQuote(entry.getFullEscapedPath())); } try