diff options
| author | Sergio <sergiotarxz@posteo.net> | 2026-09-25 22:48:43 +0200 |
|---|---|---|
| committer | Sergio <sergiotarxz@posteo.net> | 2026-09-25 22:48:43 +0200 |
| commit | 609f12de0f679b7d0cbf033082daa0793e79a2b4 (patch) | |
| tree | 201932187992934a12f1f63ccf624a4e66976da7 | |
| parent | 49173c16e72e4293124f8418b11b8b37170fbe8c (diff) | |
Handling algaos-recovery installHEADv1.0.0-rc18main
| -rw-r--r-- | lib/AlgaOS/Updater/GUI.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/AlgaOS/Updater/GUI.pm b/lib/AlgaOS/Updater/GUI.pm index 54b0887..ab826d2 100644 --- a/lib/AlgaOS/Updater/GUI.pm +++ b/lib/AlgaOS/Updater/GUI.pm @@ -344,6 +344,12 @@ sub _update($self) { if ( system qw{sudo emerge --depclean} ) { exit 1; } + if (system qw{sudo emerge --sync algaos-extra}) { + exit 1; + } + if (system qw{sudo emerge -1 algaos-recovery}) { + exit 1; + } my @services = qw/power-profiles-daemon/; for my $service (@services) { system qw{sudo systemctl enable --now}, $service; |
