Skip to content

Commit 16195e3

Browse files
samsonjsBirmacherAkos
authored andcommitted
Fix a typo in log text (#55)
1 parent afd593c commit 16195e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ func isCacheAvailable(srcDir string, swiftVersion string) (bool, error) {
9999
// ---
100100

101101
// read cache indicator file (Carthage/Cachefile)
102-
fmt.Print("- Cachfile: ")
102+
fmt.Print("- Cachefile: ")
103103
var cacheFileContent string
104104

105105
cacheFilePth := filepath.Join(carthageDir, cacheFileName)
@@ -116,7 +116,7 @@ func isCacheAvailable(srcDir string, swiftVersion string) (bool, error) {
116116
if err != nil {
117117
return false, err
118118
} else if cacheFileContent == "" {
119-
log.Errorf("Cachfile is empty")
119+
log.Errorf("Cachefile is empty")
120120
} else {
121121
log.Debugf(cacheFileName + " content: " + cacheFileContent + "\n")
122122
}

0 commit comments

Comments
 (0)