Skip to content

Commit

Permalink
version 0.3.7 is ready
Browse files Browse the repository at this point in the history
  • Loading branch information
inbasic committed Dec 22, 2013
1 parent d29336c commit 5643d7e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Binary file modified src/gmail-notifier.xpi
Binary file not shown.
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"contributors": ["CaTz", "ecaron"],

"url": "",
"version": "0.3.6",
"version": "0.3.7",
"lib": "lib",
"main": "main",

Expand Down
7 changes: 3 additions & 4 deletions template/bootstrap.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* vim:set ts=2 sw=2 sts=2 expandtab */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
Expand Down Expand Up @@ -220,8 +219,6 @@ function startup(data, reasonCode) {
// options used by system module.
// File to write 'OK' or 'FAIL' (exit code emulation).
resultFile: options.resultFile,
// File to write stdout.
logFile: options.logFile,
// Arguments passed as --static-args
staticArgs: options.staticArgs,

Expand All @@ -235,6 +232,7 @@ function startup(data, reasonCode) {
stopOnError: options.stopOnError,
verbose: options.verbose,
parseable: options.parseable,
checkMemory: options.check_memory,
}
}
});
Expand All @@ -248,7 +246,8 @@ function startup(data, reasonCode) {
prefsURI: rootURI + 'defaults/preferences/prefs.js'
});
} catch (error) {
dump('Bootstrap error: ' + error.message + '\n' +
dump('Bootstrap error: ' +
(error.message ? error.message : String(error)) + '\n' +
(error.stack || error.fileName + ': ' + error.lineNumber) + '\n');
throw error;
}
Expand Down

0 comments on commit 5643d7e

Please sign in to comment.