File tree 2 files changed +6
-2
lines changed 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ 3.1.0] - Unreleased
7
+ ## [ 3.1.1] - Unreleased
8
+ ### Fixed
9
+ - Exit status code on error
10
+
11
+ ## [ 3.1.0] - 2019-03-14
8
12
### Added
9
13
- ` AUTH0_EXCLUDED_CLIENTS ` option has been added to the config. Works similar to ` AUTH0_EXCLUDED_RULES ` and ` AUTH0_EXCLUDED_RESOURCE_SERVERS ` . #102
10
14
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ if (require.main === module) {
68
68
log . debug ( error . stack ) ;
69
69
}
70
70
71
- if ( msg . includes ( 'Payload validation error' ) ) {
71
+ if ( typeof msg === 'string' && msg . includes ( 'Payload validation error' ) ) {
72
72
log . info ( 'Please see https://github.com/auth0/auth0-deploy-cli#troubleshooting for common issues' ) ;
73
73
}
74
74
process . exit ( 1 ) ;
You can’t perform that action at this time.
0 commit comments