1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00

Added update command

This commit is contained in:
Krateng 2019-12-10 22:55:36 +01:00
parent 414f530035
commit a6b1a8a144
2 changed files with 5 additions and 3 deletions

View File

@ -195,7 +195,8 @@ def backup(level="full"):
for f in real_files: for f in real_files:
archive.add(f) archive.add(f)
def update():
os.system("pip3 install malojaserver --upgrade --no-cache-dir")
@mainfunction({"l":"level"},shield=True) @mainfunction({"l":"level"},shield=True)
def main(action,*args,**kwargs): def main(action,*args,**kwargs):
@ -205,7 +206,8 @@ def main(action,*args,**kwargs):
"stop":stop, "stop":stop,
"import":loadlastfm, "import":loadlastfm,
"debug":direct, "debug":direct,
"backup":backup "backup":backup,
"update":update
} }
if action in actions: actions[action](*args,**kwargs) if action in actions: actions[action](*args,**kwargs)
else: print("Valid commands: " + " ".join(a for a in actions)) else: print("Valid commands: " + " ".join(a for a in actions))