This commit is contained in:
Ferit Yiğit BALABAN 2023-05-25 07:31:12 +03:00
parent 0c24bc40be
commit 3ffa96677b
Signed by: fyb
GPG Key ID: E21FEB2C244CB7EB

View File

@ -148,9 +148,9 @@ def main():
ans = input('(B)ackup or (D)eploy is possible, select one: ').lower()
if ans == 'b' or ans == 'd':
break
if ans = 'b':
if ans == 'b':
backup(flag_interactive)
elif ans = 'd':
elif ans == 'd':
deploy(flag_deploy)
else:
if flag_backup and not flag_deploy: