mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-17 20:34:34 +00:00
Bug 362686: install-app from zip fails, patch by Tuukka Tolvanen <tuukka.tolvanen@gmail.com>, r=bsmedberg
This commit is contained in:
parent
6436a564cb
commit
5a928ff5ea
@ -178,7 +178,7 @@ zipExtractor.prototype = {
|
||||
var file = aDestination.clone();
|
||||
|
||||
var dirs = aZipEntry.split(/\//);
|
||||
var isDirectory = path.match(/\/$/) != null;
|
||||
var isDirectory = /\/$/.test(aZipEntry);
|
||||
|
||||
var end = dirs.length;
|
||||
if (!isDirectory)
|
||||
@ -193,7 +193,7 @@ zipExtractor.prototype = {
|
||||
|
||||
if (!isDirectory) {
|
||||
file.append(dirs[end]);
|
||||
aZipReader.extract(path, file);
|
||||
aZipReader.extract(aZipEntry, file);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user