Skip to content

Commit

Permalink
Merge pull request #20 from felipealfonsog/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
felipealfonsog committed Feb 22, 2024
2 parents 99bfbf2 + 67fa987 commit ce72596
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/upd8all_updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def update_yay():
with open(config_file, "w") as f:
json.dump({"misc": {"save": True}}, f)
command = "yay -Syu --noconfirm"
execute_command_with_sudo(command)
os.system(command)

# Function to update packages with Homebrew
def update_brew():
Expand Down
2 changes: 1 addition & 1 deletion src/upd8all_updater_unstable.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def update_yay():
with open(config_file, "w") as f:
json.dump({"misc": {"save": True}}, f)
command = "yay -Syu --noconfirm"
execute_command_with_sudo(command)
os.system(command)

# Function to update packages with Homebrew
def update_brew():
Expand Down

0 comments on commit ce72596

Please sign in to comment.