generated from ublue-os/udev-rules
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: split brew from default.just (#278)
* chore: split brew from default.just * fix: justfile line ending
- Loading branch information
Showing
3 changed files
with
34 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
alias brew := install-brew | ||
|
||
# Install Homebrew | https://brew.sh | ||
install-brew: | ||
#!/usr/bin/env bash | ||
source /usr/lib/ujust/ujust.sh | ||
if [[ ! -f "/var/home/linuxbrew/.linuxbrew/bin" || ! -x "/var/home/linuxbrew/.linuxbrew/bin/brew" ]]; then | ||
echo "${b}Brew Installation${n}" | ||
echo "Please ${b}IGNORE${n} everything the installer tells you to do at the end" | ||
echo "We have already done it for you! You just need to close and re-open the terminal after installation" | ||
echo "Do you understand?" | ||
echo "Please type in \"YES I UNDERSTAND\" and press enter" | ||
read ACCEPT | ||
if [ "$ACCEPT" == "YES I UNDERSTAND" ]; then | ||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | ||
else | ||
echo "Capitalization matters when you type \"YES I UNDERSTAND\"" | ||
fi | ||
fi | ||
# 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 | ||
# Removes homebrew from system | ||
remove-brew: | ||
echo "Removing homebrew ..." | ||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,7 @@ Source21: toolbox.ini | |
Source22: 31-toolbox.just | ||
Source23: brew.sh | ||
Source24: 15-ublue-config.md | ||
Source25: 05-brew.just | ||
|
||
%global sub_name %{lua:t=string.gsub(rpm.expand("%{NAME}"), "^ublue%-os%-", ""); print(t)} | ||
|
||
|
@@ -108,6 +109,9 @@ just --completions bash | sed -E 's/([\(_" ])just/\1ujust/g' > %{_datadir}/bash- | |
chmod 644 %{_datadir}/bash-completion/completions/ujust | ||
|
||
%changelog | ||
* Wed May 15 2024 m2Giles <[email protected]> - 0.33 | ||
- Split brew just file out | ||
|
||
* Wed May 01 2024 Kyle Gospodnetich <[email protected]> - 0.32 | ||
- Add powerstat | ||
|
||
|