Implement tool to validate archive

This commit is contained in:
Jan Eitzinger
2023-03-31 11:25:12 +02:00
parent 68a839bf1c
commit eb2e2cb1d2
4 changed files with 37 additions and 6 deletions

View File

@@ -180,6 +180,7 @@ func main() {
flag.StringVar(&srcPath, "s", "./var/job-archive", "Specify the source job archive path. Default is ./var/job-archive")
flag.StringVar(&dstPath, "d", "./var/job-archive-new", "Specify the destination job archive path. Default is ./var/job-archive-new")
flag.Parse()
if _, err := os.Stat(filepath.Join(srcPath, "version.txt")); !errors.Is(err, os.ErrNotExist) {
log.Fatal("Archive version exists!")