diff --git a/PKGBUILD b/PKGBUILD index 9680bcf..acdb6ea 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Eric Torres pkgname=file-scripts -pkgver=1.1.0 +pkgver=1.1.1 pkgrel=1 pkgdesc="Various scripts for performing file-related operations such as editing and deleting." arch=(any) diff --git a/bin/quickdel b/bin/quickdel index 196c5c2..6d48921 100755 --- a/bin/quickdel +++ b/bin/quickdel @@ -151,7 +151,7 @@ if __name__ == "__main__": print() try: - user_response = input("Would you like to delete these files? (y/N)") + user_response = input("Would you like to delete these files? [y/N]: ") except KeyboardInterrupt: exit(error.E_INTERRUPT) diff --git a/setup.py b/setup.py index a51c350..39ad4ba 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ with open("README", "r") as fh: # ========== Package Setup ========== setuptools.setup( name="file_scripts", - version="1.1.0", + version="1.1.1", author="Eric Torres", author_email="erictorres4@protonmail.com", description="File-related helper scripts",