From 649a863f4615f9da1a6c413ebee27ae059598372 Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Mon, 27 Nov 2023 20:36:52 -0500 Subject: [PATCH] fix(just): remove brew shortcuts Removing install and shell for now, but leaving uninstall there since this conflicts with host stuff. --- build/ublue-os-just/00-default.just | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/build/ublue-os-just/00-default.just b/build/ublue-os-just/00-default.just index ce19e4a3..4561dc52 100644 --- a/build/ublue-os-just/00-default.just +++ b/build/ublue-os-just/00-default.just @@ -56,33 +56,6 @@ remove-distrobox-git: echo 'Uninstalling latest git snapshot of Distrobox...' curl -s https://raw.githubusercontent.com/89luca89/distrobox/main/uninstall | sh -s -- --prefix ~/.local -# Install Homebrew for Linux -brew-install: - echo "Installing homebrew ..." - /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" - -# Add Homebrew to shell rc files -brew-shell: - #!/usr/bin/env bash - set -euxo pipefail - echo "Adding homebrew to shell configuration" - touch $HOME/.zprofile - touch $HOME/.bash_profile - if grep -q "linuxbrew" $HOME/.zprofile - then - echo "Brew configuration already present in .zprofile" - else - echo "Adding Brew configuration to .zprofile" - echo 'eval "$(/var/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> $HOME/.zprofile - fi - if grep -q "linuxbrew" $HOME/.bash_profile - then - echo "Brew configuration already present in .bash_profile" - else - echo "Adding Brew configuration to .bash_profile" - echo 'eval "$(/var/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> $HOME/.bash_profile - fi - # Removes homebrew from system brew-remove: echo "Removing homebrew ..."