fix(includes): propagate silent mode from included Taskfiles to tasks (#2640)

This commit is contained in:
Timothy Rule
2026-01-25 16:33:52 +01:00
committed by GitHub
parent 065236f076
commit f6720760b4
10 changed files with 89 additions and 8 deletions

View File

@@ -10,6 +10,15 @@ type Copier[T any] interface {
DeepCopy() T
}
func Scalar[T any](orig *T) *T {
if orig == nil {
return nil
} else {
v := *orig
return &v
}
}
func Slice[T any](orig []T) []T {
if orig == nil {
return nil