We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14bf714 commit 1e44a11Copy full SHA for 1e44a11
cmd/check.go
@@ -70,7 +70,9 @@ func GetCheckCmd() *cobra.Command {
70
checkHomeKeyring(home, nodeType == types.ValidatorNode)
71
checkHomeConfig(home, nodeType)
72
checkHomeData(home, nodeType)
73
- checkServiceFileForValidatorOnLinux(home, serviceFilePath)
+ if nodeType == types.ValidatorNode && isLinux {
74
+ checkServiceFileForValidatorOnLinux(home, serviceFilePath)
75
+ }
76
77
fmt.Println("NOTICE: some tasks need to be checked manually:")
78
constants/varcons.go
@@ -4,7 +4,7 @@ package constants
4
5
//goland:noinspection GoSnakeCaseUsage
6
var (
7
- VERSION = "1.1.1"
+ VERSION = "1.1.2"
8
COMMIT_HASH = ""
9
BUILD_DATE = ""
10
)
0 commit comments