Fix command to delete item in connection explorer
authorkh5325.kim <kh5325.kim@samsung.com>
Wed, 10 Apr 2013 12:04:53 +0000 (21:04 +0900)
committerkh5325.kim <kh5325.kim@samsung.com>
Wed, 10 Apr 2013 12:04:53 +0000 (21:04 +0900)
org.tizen.common.connection/src/org/tizen/common/connection/explorer/ConnectionExplorerPanel.java

index 4957832..0688f39 100755 (executable)
@@ -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