[Title] Modify unzip option on Ubuntu. 83/11183/1
authoryongsung1.kim <yongsung1.kim@samsung.com>
Tue, 22 Oct 2013 07:54:28 +0000 (16:54 +0900)
committeryongsung1.kim <yongsung1.kim@samsung.com>
Tue, 22 Oct 2013 07:54:28 +0000 (16:54 +0900)
[Desc.] unzip -ao -> unzip -o
[Issue] Redmine #10908

Change-Id: Idfc0e3fee9098411a446e3b57c10fbe8d0122de1

InstallManager_java/src/org/tizen/installmanager/lib/linux/LinuxSDKPackageFormat.java

index f70184a..62e707c 100644 (file)
@@ -78,7 +78,7 @@ public class LinuxSDKPackageFormat extends SDKPackageFormat{
         
        try {
                if (checkExtension == PackageType.ZIP) {
-                       exitValue = sendCommand( "unzip -ao "+ fileFullPath.getAbsolutePath() + " -d " + targetDir.getAbsolutePath(),
+                       exitValue = sendCommand( "unzip -o "+ fileFullPath.getAbsolutePath() + " -d " + targetDir.getAbsolutePath(),
                                        fileFullPath.getAbsolutePath(), PackageType.ZIP, monitor);
                        unzipReturnValue(exitValue);
                } else if (checkExtension == PackageType.TAR_GZ) {