From 933fe0e1149a89ae561d961990c74bc15e23bb66 Mon Sep 17 00:00:00 2001 From: "kh5325.kim" Date: Wed, 10 Apr 2013 21:04:53 +0900 Subject: [PATCH] Fix command to delete item in connection explorer --- .../org/tizen/common/connection/explorer/ConnectionExplorerPanel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.7.4