mirror of
https://codeberg.org/Mo8it/dotfiles.git
synced 2025-01-01 15:39:20 +00:00
Start and end
This commit is contained in:
parent
b4bccddf44
commit
bef682ffc8
1 changed files with 4 additions and 4 deletions
|
@ -122,11 +122,8 @@ def update_npm():
|
||||||
|
|
||||||
|
|
||||||
def main(input):
|
def main(input):
|
||||||
if input == "start_build":
|
if input == "start":
|
||||||
start_build()
|
start_build()
|
||||||
elif input == "update_and_stop_build":
|
|
||||||
update_build()
|
|
||||||
stop_build()
|
|
||||||
elif input == "rpm-ostree":
|
elif input == "rpm-ostree":
|
||||||
update_rpm_ostree()
|
update_rpm_ostree()
|
||||||
elif input == "flatpak":
|
elif input == "flatpak":
|
||||||
|
@ -139,6 +136,9 @@ def main(input):
|
||||||
update_pipx()
|
update_pipx()
|
||||||
elif input == "npm":
|
elif input == "npm":
|
||||||
update_npm()
|
update_npm()
|
||||||
|
elif input == "end":
|
||||||
|
update_build()
|
||||||
|
stop_build()
|
||||||
else:
|
else:
|
||||||
print(f"Input {input} not valid!")
|
print(f"Input {input} not valid!")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue