feat(commit): individual packages from config respected
This commit is contained in:
+4
-4
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user