mirror of
https://github.com/truecharts/charts.git
synced 2026-07-06 18:04:30 -03:00
16 lines
279 B
Go
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)
|
|
}
|
|
}
|