Add hook functionality #9

Merged
EnumDev merged 3 commits from hooks into develop 2025-04-07 12:20:25 +00:00
Showing only changes of commit 90d5a23fcc - Show all commits

View File

@ -98,7 +98,7 @@ func (hook *BPMHook) Execute(packageChanges map[string]string, verbose bool, roo
// Get modified files slice
modifiedFiles := make([]*PackageFileEntry, 0)
for pkg, _ := range packageChanges {
for pkg := range packageChanges {
modifiedFiles = append(modifiedFiles, GetPackageFiles(pkg, rootDir)...)
}