From b9cecbd549987cf76812d388c5028904ce06ae32 Mon Sep 17 00:00:00 2001 From: Brian Ketelsen Date: Fri, 11 Aug 2023 10:11:36 -0400 Subject: [PATCH] fix: just brew-shell will create .zprofile and .bash_profile if needed (#401) --- usr/share/ublue-os/just/custom.just | 2 ++ 1 file changed, 2 insertions(+) diff --git a/usr/share/ublue-os/just/custom.just b/usr/share/ublue-os/just/custom.just index eed676a7f6c..57e24adafcf 100644 --- a/usr/share/ublue-os/just/custom.just +++ b/usr/share/ublue-os/just/custom.just @@ -28,6 +28,8 @@ 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"