зеркало из https://github.com/mozilla/gecko-dev.git
Add error message for when ZIP fails
This commit is contained in:
Родитель
3a37966923
Коммит
e32720b853
|
@ -2,4 +2,4 @@ windowTitle=Firefox CCK
|
|||
deleteConfirm=Are you sure you want to delete this configuration?
|
||||
outputLocation=Firefox CCK Wizard is completed. XPI is available at:\n
|
||||
cancelConfirm=Do you want to save your changes?
|
||||
|
||||
zipError=Unable to create JAR or XPI file. Please ensure that a command line version of ZIP is in your path or that you have specified a path to ZIP.
|
||||
|
|
|
@ -859,7 +859,14 @@ function CCKZip(zipfile, location)
|
|||
var args = [file.path];
|
||||
|
||||
process.run(true, args, args.length);
|
||||
// file.remove(false);
|
||||
file.remove(false);
|
||||
var file = location.clone();
|
||||
file.append(zipfile);
|
||||
if (!file.exists()) {
|
||||
var bundle = document.getElementById("bundle_cckwizard");
|
||||
gPromptService.alert(window, bundle.getString("windowTitle"),
|
||||
bundle.getString("zipError"));
|
||||
}
|
||||
}
|
||||
|
||||
function CCKWriteXULOverlay(destdir)
|
||||
|
|
Загрузка…
Ссылка в новой задаче