diff --git a/pwnagotchi/__init__.py b/pwnagotchi/__init__.py index 14737d5e..caa4bc97 100644 --- a/pwnagotchi/__init__.py +++ b/pwnagotchi/__init__.py @@ -4,7 +4,7 @@ import logging import time import pwnagotchi.ui.view as view -version = '1.0.1' +version = '1.1.0b' _name = None diff --git a/pwnagotchi/plugins/default/auto-update.py b/pwnagotchi/plugins/default/auto-update.py index eaa7396b..b172e976 100644 --- a/pwnagotchi/plugins/default/auto-update.py +++ b/pwnagotchi/plugins/default/auto-update.py @@ -111,6 +111,10 @@ def install(display, update): if update['native']: dest_path = subprocess.getoutput("which %s" % name) + if dest_path == "": + logging.warning("[update] can't find path for %s" % name) + return + logging.info("[update] installing %s to %s ... TODO" % (source_path, dest_path)) else: