mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-03-23 04:25:24 +00:00
Auto-merge for PR #677 via VersionBot
Fix typo in EEXIST error predicate
This commit is contained in:
commit
2a6d5557e4
@ -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]
|
||||
|
@ -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",
|
||||
|
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user