Skip to content

Commit

Permalink
Globally exception catcher - v1.18.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Javinator9889 committed May 21, 2018
1 parent 1993c70 commit 2bde8b6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@
A Python tool for upgrade your kernel safely from https://kernel.org


[![PyPi](https://img.shields.io/badge/v1.18.6%20-PyPi-green.svg)](https://pypi.org/project/KernelUpgrader/)
[![PyPi](https://img.shields.io/badge/v1.18.7%20-PyPi-green.svg)](https://pypi.org/project/KernelUpgrader/)
[![ZIP](https://img.shields.io/badge/Package%20-Zip-green.svg)](https://github.com/Javinator9889/KernelUpgrader/archive/master.zip)
[![GIT](https://img.shields.io/badge/Package%20-Git-green.svg)](https://github.com/Javinator9889/KernelUpgrader.git)

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -3,7 +3,7 @@ KernelUpgrader

A Python tool for upgrade your kernel safely from https://kernel.org

.. image :: https://img.shields.io/badge/v1.18.6%20-PyPi-green.svg
.. image :: https://img.shields.io/badge/v1.18.7%20-PyPi-green.svg
:target: https://pypi.org/project/KernelUpgrader/
:alt: PyPi
.. image :: https://img.shields.io/badge/Package%20-Zip-green.svg
Expand Down
6 changes: 5 additions & 1 deletion kernel_upgrader/__init__.py
Expand Up @@ -197,7 +197,11 @@ def main():
action="store_true",
help="Only checks if there is any new version available")
args = arguments.parse_args()
application(args)
try:
application(args)
except Exception as e:
print(e)
exit(-1)


if __name__ == '__main__':
Expand Down
2 changes: 1 addition & 1 deletion kernel_upgrader/values/Constants.py
Expand Up @@ -37,7 +37,7 @@

# Other params
OP_REPO_URL = "https://goo.gl/ZJ4zP9"
OP_VERSION = "1.18.6"
OP_VERSION = "1.18.7"
OP_VERSION_RAW = "https://github.com/Javinator9889/KernelUpgrader/raw/master/version.json"

# Program extended usage
Expand Down
Binary file modified version.json
Binary file not shown.

0 comments on commit 2bde8b6

Please sign in to comment.