diff options
| author | Sergio <sergiotarxz@posteo.net> | 2026-08-25 23:34:19 +0200 |
|---|---|---|
| committer | Sergio <sergiotarxz@posteo.net> | 2026-08-25 23:34:19 +0200 |
| commit | 104a5110aa871932bc88a2b961ff39750446609b (patch) | |
| tree | 62804ee60a518a0b11fbd14261b3e1e86962a4b7 | |
| parent | fc1832dcccae9c3ee105983a0787c92e1b30bdca (diff) | |
Timeout needs to exit sometime
| -rw-r--r-- | lib/AlgaOS/Installer/GUI.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/AlgaOS/Installer/GUI.pm b/lib/AlgaOS/Installer/GUI.pm index dddad39..5200787 100644 --- a/lib/AlgaOS/Installer/GUI.pm +++ b/lib/AlgaOS/Installer/GUI.pm @@ -826,7 +826,9 @@ sub _internet_wall { $first_try = 0; if (!system qw{ping -c1 google.com}) { $self->_scroll->set_child($self->_create_main_grid); + return 0; } + return 1; } ); return $grid; |
