summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
Diffstat (limited to 'run')
-rw-r--r--run/run.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/run/run.go b/run/run.go
index 8ff2ccb..6a668ce 100644
--- a/run/run.go
+++ b/run/run.go
@@ -57,7 +57,7 @@ func Final(source *model.Source, target model.Target) error {
// ExecWithTrigger loops through a model.Source and runs targets if they match the expected model.Tag
// triggers only run if their subdirectory is "in tree"
-func ExecWithTrigger(source *model.Source, target model.Target, tag model.Tag) error {
+func ExecWithTrigger(source *model.Source, target model.Target, tag *model.Tag) error {
for _, t := range source.Targets {
if t.Tags().Has(tag) {
triggerSub := t.Sub()