2017-04-14 09:41:55 +00:00
|
|
|
// Generated by CoffeeScript 1.12.5
|
2016-01-11 19:58:35 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Copyright 2016 Resin.io
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2017-03-17 17:37:07 +00:00
|
|
|
var Promise, Raven, captureException, chalk, errors, patterns;
|
2017-03-22 09:46:06 +00:00
|
|
|
|
|
|
|
chalk = require('chalk');
|
|
|
|
|
|
|
|
errors = require('resin-cli-errors');
|
|
|
|
|
|
|
|
patterns = require('./utils/patterns');
|
|
|
|
|
2017-03-17 17:37:07 +00:00
|
|
|
Raven = require('raven');
|
|
|
|
|
|
|
|
Promise = require('bluebird');
|
|
|
|
|
|
|
|
captureException = Promise.promisify(Raven.captureException.bind(Raven));
|
|
|
|
|
2017-03-22 09:46:06 +00:00
|
|
|
exports.handle = function(error) {
|
|
|
|
var message;
|
|
|
|
message = errors.interpret(error);
|
|
|
|
if (message == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (process.env.DEBUG) {
|
|
|
|
message = error.stack;
|
|
|
|
}
|
|
|
|
patterns.printErrorMessage(message);
|
2017-03-17 17:37:07 +00:00
|
|
|
return captureException(error).timeout(1000)["catch"](function() {})["finally"](function() {
|
|
|
|
return process.exit(error.exitCode || 1);
|
|
|
|
});
|
2017-03-22 09:46:06 +00:00
|
|
|
};
|