2016-01-03 23:58:51 -04: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.
|
|
|
|
###
|
|
|
|
|
2015-09-11 14:45:48 +03:00
|
|
|
chalk = require('chalk')
|
|
|
|
errors = require('resin-cli-errors')
|
2015-10-06 18:51:17 -04:00
|
|
|
patterns = require('./utils/patterns')
|
2014-12-22 12:47:12 -04:00
|
|
|
|
2015-09-11 14:45:48 +03:00
|
|
|
exports.handle = (error) ->
|
|
|
|
message = errors.interpret(error)
|
|
|
|
return if not message?
|
2014-12-22 12:47:12 -04:00
|
|
|
|
|
|
|
if process.env.DEBUG
|
2015-09-11 14:45:48 +03:00
|
|
|
message = error.stack
|
2015-01-06 13:54:40 -03:00
|
|
|
|
2015-10-06 18:51:17 -04:00
|
|
|
patterns.printErrorMessage(message)
|
2015-09-11 14:45:48 +03:00
|
|
|
process.exit(error.exitCode or 1)
|