From 579c0c885a24913431cc14c0644538d4820434ab Mon Sep 17 00:00:00 2001 From: Alexander Kislukhin <47034358+liquidcarbon@users.noreply.github.com> Date: Thu, 15 Aug 2024 10:54:54 -0600 Subject: [PATCH] source "$HOME/.bashrc" --- pup.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pup.sh b/pup.sh index ac6bcde..c843439 100755 --- a/pup.sh +++ b/pup.sh @@ -88,7 +88,9 @@ get_pup get_pixi() { if ! command -v pixi &> /dev/null; then curl -fsSL $PIXI_INSTALL_URL | bash - source $HOME/.bashrc # for GHA + echo hi $(ls -l ~/.bashrc) + cat "$HOME/.bashrc" + source "$HOME/.bashrc" # for GHA echo "✨ $(pixi -V) installed" else echo "✨ $(pixi -V) found"