feat: patch brew installation just command to not require wheel

This commit is contained in:
qoijjj
2024-08-18 18:35:56 -07:00
parent a832247d84
commit 78198f4e5a
3 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
20,25d19
< # if /etc/profile.d/brew.sh already exists, replace it with /usr/etc/profile.d/brew.sh
< if [ -f /etc/profile.d/brew.sh ]; then
< if [ -f /usr/etc/profile.d/brew.sh ]; then
< sudo cp /usr/etc/profile.d/brew.sh /etc/profile.d/brew.sh
< fi
< fi

View File

@@ -0,0 +1,7 @@
#!/usr/bin/env bash
# Tell build process to exit if there are any errors.
set -oue pipefail
patch /usr/share/ublue-os/just/05-brew.just < enable-wheelless-brew-installation.patch

View File

@@ -8,3 +8,4 @@ scripts:
- createmissingdirectories.sh
- removesuid.sh
- disablegeoclue.sh
- enablewheellessbrewjust.sh