-
Notifications
You must be signed in to change notification settings - Fork 1
/
misc.go
41 lines (35 loc) · 828 Bytes
/
misc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package main
import (
"encoding/base32"
"log"
"os"
"strconv"
"strings"
)
func convertStringToInt(value string) (returnValue int, err error) {
returnValue, err = strconv.Atoi(value)
if err != nil {
return returnValue, err
}
return returnValue, nil
}
//nolint
func base32StringToByte(data string) ([]byte, error) {
return base32.StdEncoding.DecodeString(strings.ToUpper(data))
}
func debugPrint(v string) {
if debug {
log.Println(v)
}
}
func printErrorsAndExit(errors []error) {
if errors != nil {
for _, element := range errors {
ui.Error(element.Error())
}
os.Exit(1) // skipcq: RVV-A0003
}
}