buildx failed with: ERROR: failed to solve: process "/bin/sh -c set -eu\n\n log() {\n echo >&2 \"${@}\"\n }\n\n cancel() {\n log \"${@}\"\n return 1\n }\n\n prepare() {\n if command -v apt-get >/dev/null; then\n apt-get update && apt-get install -y --no-install-recommends libx11-6\n elif command -v pacman >/dev/null; then\n pacman -Syu --noconfirm libx11\n elif command -v dnf >/dev/null; then\n dnf list updates && dnf install -y libX11\n fi\n }\n\n main() {\n files=\"$(find /opt/ -maxdepth 1 -type f -name '*.AppImage')\"\n if [ -z \"${files}\" ]; then\n cancel \"Error: No AppImage file found.\"\n fi\n prepare\n config_path=\"${HOME}/.config/scc\"\n mkdir -p \"${config_path}\"\n echo '{}' >\"${config_path}/config.json\"\n\n echo \"${files}\" | while read -r file; do\n log \"Testing ${file}\"\n chmod +x \"${file}\"\n rm -rf squashfs-root/\n \"${file}\" --appimage-extract >/dev/null\n (\n cd squashfs-root/runtime/compat\n ../../AppRun dependency-check\n ../../AppRun daemon --help\n )\n rm -f \"${file}\"\n done\n }\n main \"${@}\"\n" did not complete successfully: exit code: 1