From 39f4227c0651ea2856bac234e7978e1e57bdf28a Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Sun, 11 Jan 2026 00:54:12 +0100 Subject: [PATCH] fix(bash): source dotfiles and remove cloned dir after install (#101) Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/101 --- .local/bin/scripts/install_dotfiles.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.local/bin/scripts/install_dotfiles.sh b/.local/bin/scripts/install_dotfiles.sh index 217b70f..99e0abd 100755 --- a/.local/bin/scripts/install_dotfiles.sh +++ b/.local/bin/scripts/install_dotfiles.sh @@ -2,4 +2,9 @@ cp -rp . $HOME cd .. -rm -r dotfiles + +source .bash_profile +source .bash_aliases + +echo "dotfiles copied to '$HOME'. Removing directory: '$(pwd)'" +sudo rm -rf dotfiles