ecrypt v1.0.0

This commit is contained in:
lw-everestlinux 2022-10-20 11:25:34 -04:00
parent 57ab6b4955
commit b460a52023

12
src/gpc/gpc.py Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/python3
import argparse
import sys
import os
from pathlib import Path
parser = argparse.ArgumentParser(description="Create and test Glacier packages.")
parser.add_argument("--check", help="Check if a package has all necessary files.")
parser.add_argument("--mkpkg", help="Create a Glacier package.")
args = parser.parse_args()
print(args.check)