adapt logs

This commit is contained in:
Michael Bykovski 2024-10-02 12:10:34 +02:00 committed by GitHub
parent 8492e53163
commit db492bd5ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -95,7 +95,7 @@ func (t *AnsibleApp) installGalaxyRequirementsFile(requirementsType string, requ
requirementsHashFilePath := fmt.Sprintf("%s.md5", requirementsFilePath)
if _, err := os.Stat(requirementsFilePath); err != nil {
t.Log("No " + requirementsType + "/requirements.yml file found. Skip galaxy install process.\n")
t.Log("No " + requirementsFilePath + " file found. Skip galaxy install process.\n")
return nil
}
@ -113,7 +113,7 @@ func (t *AnsibleApp) installGalaxyRequirementsFile(requirementsType string, requ
return err
}
} else {
t.Log(requirementsType + "/requirements.yml has no changes. Skip galaxy install process.\n")
t.Log(requirementsFilePath + " has no changes. Skip galaxy install process.\n")
}
return nil