Skip to content

Commit

Permalink
fixed formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jpappa200 committed Feb 10, 2023
1 parent 76658df commit 3afd237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cache-config/t3c-apply/t3c-apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func Main() int {
const gitMaxLockAgeMinutes = 5
const gitLock = ".git/index.lock"
gitLockFile := filepath.Join(cfg.TsConfigDir, gitLock)
oldLock, err := util.IsGitLockFileOld(gitLockFile, time.Now(), gitMaxLockAgeMinutes * time.Minute)
oldLock, err := util.IsGitLockFileOld(gitLockFile, time.Now(), gitMaxLockAgeMinutes*time.Minute)
if err != nil {
log.Errorln("checking for git lock file: " + err.Error())
}
Expand Down

0 comments on commit 3afd237

Please sign in to comment.