Skip to content

Commit

Permalink
Merge pull request #47 from felipealfonsog/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
felipealfonsog authored Feb 26, 2024
2 parents beed3c2 + 8bb85f3 commit 28c0734
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 12 deletions.
Binary file removed src/upd8all-wrp
Binary file not shown.
9 changes: 0 additions & 9 deletions src/upd8all-wrp.c

This file was deleted.

7 changes: 4 additions & 3 deletions src/upd8all_updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def print_welcome_message():
Welcome to the Upd8All Updater ⚙
=======================================
Description: Upd8All is a versatile and comprehensive package update tool meticulously
crafted to cater to the needs of Arch Linux users. No more worried about sudo, and continuous
crafted to cater to the needs of Arch Linux users. No more worries about sudo, and continuous
updating of the system with pacman, yay, and brew.
-------------------------------------------------------------------------------------
Creator/Engineer: Felipe Alfonso Gonzalez - github.com/felipealfonsog - [email protected]
Expand Down Expand Up @@ -122,7 +122,7 @@ def main():
print() # Add a newline after entering the password

# Ask if the user wants to check a package version at the end
response = input("Do you want to check the version of a package at the end? (yes/no): ").strip().lower()
response = input("Do you want to check the version of a package at the end? (yes/no) [no]: ").strip().lower() or "no"
check_package_at_end = response == 'yes'

# Update packages
Expand Down Expand Up @@ -170,7 +170,8 @@ def main():
package = input("Enter the name of the package to check its version (e.g., gh): ").strip().lower()
check_package_version(package, package_manager)

print("Processes completed.")
else:
print("Processes completed.")

if __name__ == "__main__":
main()

0 comments on commit 28c0734

Please sign in to comment.