changed it to update using my repo

I changed to to look at my pwnagotchi repo unstead of evilsocket's pwnagotchi repo when it comes to updates
This commit is contained in:
scifijunkie 2024-03-09 11:19:05 -06:00
parent d2b22b2ff3
commit eb5e2f77c8
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@ -18,6 +18,8 @@ pwnagotchi.egg-info
*backup*.tgz *backup*.tgz
*backup*.gz *backup*.gz
.vscode .vscode
pwnagotchi-raspbian-lite-master.sha256
pwnagotchi-raspbian-lite-master.zip
# Environments # Environments
.env .env

View File

@ -185,7 +185,7 @@ class AutoUpdate(plugins.Plugin):
to_check = [ to_check = [
('bettercap/bettercap', parse_version('bettercap -version'), True, 'bettercap'), ('bettercap/bettercap', parse_version('bettercap -version'), True, 'bettercap'),
('evilsocket/pwngrid', parse_version('pwngrid -version'), True, 'pwngrid-peer'), ('evilsocket/pwngrid', parse_version('pwngrid -version'), True, 'pwngrid-peer'),
('evilsocket/pwnagotchi', pwnagotchi.__version__, False, 'pwnagotchi') ('scifijunk/pwnagotchi', pwnagotchi.__version__, False, 'pwnagotchi')
] ]
for repo, local_version, is_native, svc_name in to_check: for repo, local_version, is_native, svc_name in to_check: