1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-12-30 19:53:45 +00:00

Start and end

This commit is contained in:
Mo 2022-05-15 20:01:28 +02:00
parent b4bccddf44
commit bef682ffc8

View file

@ -122,11 +122,8 @@ def update_npm():
def main(input):
if input == "start_build":
if input == "start":
start_build()
elif input == "update_and_stop_build":
update_build()
stop_build()
elif input == "rpm-ostree":
update_rpm_ostree()
elif input == "flatpak":
@ -139,6 +136,9 @@ def main(input):
update_pipx()
elif input == "npm":
update_npm()
elif input == "end":
update_build()
stop_build()
else:
print(f"Input {input} not valid!")