diff options
| author | Jeff Carr <[email protected]> | 2025-10-12 00:10:42 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-12 00:10:42 -0500 |
| commit | bb87443f4319e919b83b350292eb8ca3008e58c9 (patch) | |
| tree | d8ca102a8ce18005cc1344db40aeb4b75749ab43 /errors.go | |
| parent | 850642580bd5e4d425a66582c86c6730d328580c (diff) | |
okay
Diffstat (limited to 'errors.go')
| -rw-r--r-- | errors.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/errors.go b/errors.go new file mode 100644 index 0000000..afcc9dc --- /dev/null +++ b/errors.go @@ -0,0 +1,17 @@ +// Copyright 2017-2025 WIT.COM Inc. All rights reserved. +// Use of this source code is governed by the GPL 3.0 + +package main + +// checks that repos are in a "normal" state + +import ( + "errors" +) + +var ErrorLocalDevelBranch error = errors.New("devel branch problem") +var ErrorLocalMasterBranch error = errors.New("master branch problem") +var ErrorNoUserBranch error = errors.New("no user branch") +var ErrorNoDevelBranch error = errors.New("no devel branch") +var ErrorNoMasterBranch error = errors.New("no master branch") +var ErrorLocalBehindDevel error = errors.New("local behind devel") |
