From bbaa54b31e44b0c93db56ce12071bceda4c2c120 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sat, 13 Jun 2026 10:18:37 +0100 Subject: [PATCH] Install bubblewrap in post-install instructions - Homebrew uses `bubblewrap` for sandboxing on Linux so suggest installing it alongside the build tools for each distro. --- install.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/install.sh b/install.sh index 37986128..b877e6f9 100755 --- a/install.sh +++ b/install.sh @@ -1139,7 +1139,7 @@ then if [[ -x "$(command -v apt-get)" ]] then - echo " sudo apt-get install build-essential" + echo " sudo apt-get install build-essential bubblewrap" elif [[ -x "$(command -v dnf)" ]] then # Fedora uses the lowercase `development-tools` group id; most other @@ -1147,19 +1147,19 @@ then # shellcheck disable=SC1091 if [[ -r /etc/os-release ]] && (. /etc/os-release && [[ "${ID:-}" == "fedora" ]]) then - echo " sudo dnf group install development-tools" + echo " sudo dnf group install development-tools && sudo dnf install bubblewrap" else - echo " sudo dnf group install 'Development Tools'" + echo " sudo dnf group install 'Development Tools' && sudo dnf install bubblewrap" fi elif [[ -x "$(command -v yum)" ]] then - echo " sudo yum groupinstall 'Development Tools'" + echo " sudo yum groupinstall 'Development Tools' && sudo yum install bubblewrap" elif [[ -x "$(command -v pacman)" ]] then - echo " sudo pacman -S base-devel" + echo " sudo pacman -S base-devel bubblewrap" elif [[ -x "$(command -v apk)" ]] then - echo " sudo apk add build-base" + echo " sudo apk add build-base bubblewrap" fi cat <