spelling error..

This commit is contained in:
Marcell Mars 2020-12-02 17:43:05 +01:00
parent 5f7abdbbfe
commit a57d963303
1 changed files with 2 additions and 2 deletions

View File

@ -39,9 +39,9 @@ func isPublished(gitRepoPath, gitIndexPath, prevcommit, lastcommit string) bool
err := commits.Run()
check(err)
for _, commit := range strings.Fields(sout.String()) {
commitedFiles, err := exec.Command("git", "-C", gitRepoPath, "diff-tree", "--no-commit-id", "--name-only", commit).Output()
committedFiles, err := exec.Command("git", "-C", gitRepoPath, "diff-tree", "--no-commit-id", "--name-only", commit).Output()
check(err)
for _, commitFile := range strings.Fields(string(commitedFiles)) {
for _, commitFile := range strings.Fields(string(committedFiles)) {
if commitFile == "PUBLISH.trigger.md" {
return true
}