Files
charts/clustertool/partial_builds/precommit/main.go
Kjeld Schouten 1c28a12789 chore: fix links
2025-09-07 14:26:19 +02:00

16 lines
279 B
Go

package main
import (
"os"
"github.com/rs/zerolog/log"
"github.com/trueforge-org/truecharts/clustertool/pkg/sops"
)
func main() {
if err := sops.CheckFilesAndReportEncryption(true, true); err != nil {
log.Info().Msgf("Error checking files: %v\n", err)
os.Exit(1)
}
}