From 1fd63a2d0d86b132e9ebefb04dce0d19230c15fa Mon Sep 17 00:00:00 2001 From: 0xdeadd Date: Thu, 30 Apr 2026 17:20:28 -0400 Subject: [PATCH] fix: remove dead 0x0.st upload hint from error message 0x0.st has disabled uploads due to AI botnet spam, making the curl hint in the error message non-functional. Ref #4396 --- archinstall/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/archinstall/main.py b/archinstall/main.py index cf0e42f67b..e38c7707f7 100644 --- a/archinstall/main.py +++ b/archinstall/main.py @@ -141,8 +141,9 @@ def _error_message(exc: Exception) -> None: Archinstall experienced the above error. If you think this is a bug, please report it to https://github.com/archlinux/archinstall and include the log file "/var/log/archinstall/install.log". - Hint: To extract the log from a live ISO - curl -F 'file=@/var/log/archinstall/install.log' https://0x0.st + Hint: To extract the log from a live ISO you can mount a USB drive or use + cat /var/log/archinstall/install.log + to view and copy the relevant output. """ ) warn(text)