Auto-merge for PR #677 via VersionBot

Fix typo in EEXIST error predicate
This commit is contained in:
resin-io-versionbot[bot] 2018-06-11 13:08:31 +00:00 committed by GitHub
commit 2a6d5557e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 3 deletions

View File

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/).
## v7.10.2 - 2018-06-11
* Fix typo in EEXIST error predicate #677 [Cameron Diver]
## v7.10.1 - 2018-06-11
* Convert iptables module to typescript #641 [Cameron Diver]

View File

@ -1,7 +1,7 @@
{
"name": "resin-supervisor",
"description": "This is resin.io's Supervisor, a program that runs on IoT devices and has the task of running user Apps (which are Docker containers), and updating them as Resin's API informs it to.",
"version": "7.10.1",
"version": "7.10.2",
"license": "Apache-2.0",
"repository": {
"type": "git",

View File

@ -10,8 +10,8 @@ export function ENOENT(err: { code: string, [key: string]: any }): boolean {
return err.code === 'ENOENT';
}
export function EEXISTS(err: { code: string, [key: string]: any }): boolean {
return err.code === 'EEXISTS';
export function EEXIST(err: { code: string, [key: string]: any }): boolean {
return err.code === 'EEXIST';
}
export function UnitNotLoadedError(err: string[]): boolean {