mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
'No updates to be performed' in resources deploy is not an error.
This commit is contained in:
parent
f8bb161bee
commit
ffeff0d659
@ -248,7 +248,11 @@ usage: serverless resources deploy`,
|
||||
});
|
||||
|
||||
} else {
|
||||
return BbPromise.reject(new SError(e));
|
||||
if( e.message.indexOf('No updates are to be performed.') !== -1) {
|
||||
return BbPromise.resolve({});
|
||||
} else {
|
||||
return BbPromise.reject(new SError(e));
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user