Files
truecharts/clustertool/partial_builds/precommit/main.go
T
2024-10-17 12:56:56 +02:00

16 lines
272 B
Go

package main
import (
"os"
"github.com/rs/zerolog/log"
"github.com/truecharts/public/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)
}
}