Skip to content

Commit

Permalink
Version bump, updated error message
Browse files Browse the repository at this point in the history
B
B
EnbyKat committed Dec 9, 2021
1 parent 9a8b73f commit b9ed33f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aurpac.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## AURPAC: Simple AUR helper in Python
## vesrion 1.0
## vesrion 1.1

import os
import sys
@@ -23,7 +23,7 @@
try:
os.system(f"git clone https://aur.archlinux.org/{targetpkg}.git")
except:
print("Something went wrong. You may not have git installed. The AUR may be down or the package may not exist. Try again.")
print("Something went wrong. You may not have git installed. The AUR may be down or the package may not exist. Your internet connection may be down. Try again.")
sys.exit()

# move to the pkg directory
@@ -40,4 +40,4 @@
os.system("makepkg -si")
except:
print("Something went wrong. try again.")
sys.exit
sys.exit()

0 comments on commit b9ed33f

Please sign in to comment.