feat(commit): individual packages from config respected

This commit is contained in:
2026-05-07 18:25:19 +02:00
parent b7218c2a82
commit ecb2952a7e
9 changed files with 69 additions and 16 deletions
+4 -4
View File
@@ -30,18 +30,18 @@ if __name__ == "__main__":
\\___/
""")
print(load_config("config.yml"))
conf = load_config("config.yml")
try:
if args.cmd == "commit":
commit.commit(args.force, args.no_render)
commit.commit(conf, args.force, args.no_render)
elif args.cmd == "config":
config.config()
config.config(conf)
elif args.cmd == "init":
init.init(args.force)
elif args.cmd == "setup":
setup.setup()
elif args.cmd == "pull":
pull.pull(args.rebase, args.apply)
pull.pull(conf, args.rebase, args.apply)
elif args.cmd == "push":
push.push(args.force)
except KeyboardInterrupt as e: