Skip to content

Commit

Permalink
Fix auto-update check from Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
v1s1t0r1sh3r3 committed Nov 19, 2024
1 parent 9d8fc4d commit 460850f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Added WEP besside-ng attack
- Added network decloaking feature
- Changed third available DoS attack (out of DoS attacks menu)
- Fix auto-update check from Docker

### 11.31
- Fixed graphics system detection when launched on a headless system using remote X windows
Expand Down
16 changes: 8 additions & 8 deletions airgeddon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15845,18 +15845,18 @@ function check_update_tools() {
debug_print

if "${AIRGEDDON_AUTO_UPDATE:-true}"; then
if [ "${update_toolsok}" -eq 1 ]; then
autoupdate_check
else
echo
language_strings "${language}" 225 "yellow"
language_strings "${language}" 115 "read"
fi
else
if [ "${is_docker}" -eq 1 ]; then
echo
language_strings "${language}" 422 "blue"
language_strings "${language}" 115 "read"
else
if [ "${update_toolsok}" -eq 1 ]; then
autoupdate_check
else
echo
language_strings "${language}" 225 "yellow"
language_strings "${language}" 115 "read"
fi
fi
fi
}
Expand Down

0 comments on commit 460850f

Please sign in to comment.