Merge change 3856 into donut

* changes:
  SDK Updater: fix install in new directory.
This commit is contained in:
Android (Google) Code Review
2009-06-11 10:24:54 -07:00
2 changed files with 11 additions and 8 deletions

View File

@@ -586,12 +586,12 @@ public class Archive implements IDescription {
destFolder.getPath());
return false;
}
}
if (!unzipDestFolder.mkdirs()) {
monitor.setResult("Failed to create temp directory %1$s",
unzipDestFolder.getPath());
return false;
}
if (!unzipDestFolder.mkdirs()) {
monitor.setResult("Failed to create directory %1$s",
unzipDestFolder.getPath());
return false;
}
if (!unzipFolder(archiveFile, getSize(), unzipDestFolder, desc, monitor)) {