summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-06-06 16:55:11 +0200
committerewy <ewy0@protonmail.com>2026-06-06 16:55:11 +0200
commit8a376262447f8858d83d07e0d98e8e4ea5c50865 (patch)
tree1b950a49f56aea32842e2a6fc5dc243e27f051b2 /run
parent58e255d3c16c7d4a7d08afde7dd3acf481e2d8ae (diff)
add more shit to the manpage
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()