From b8fff0ab5a2c1861271626eeb33501458c2fb4ce Mon Sep 17 00:00:00 2001 From: Alexandre CATTEAU Date: Mon, 14 Mar 2022 19:09:40 +0100 Subject: [PATCH] Adapt to new .bashrc.d structure for extensions --- bashrc-mine | 2 +- install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bashrc-mine b/bashrc-mine index 9978fc5..4ab0865 100644 --- a/bashrc-mine +++ b/bashrc-mine @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# ~/.bashrc-mine +# ~/.bashrc.d/bashrc-mine # byMasterKTO ## SSH configuration diff --git a/install.sh b/install.sh index b9e4deb..075d6bb 100755 --- a/install.sh +++ b/install.sh @@ -4,7 +4,7 @@ run_directory=$(dirname "$0") $user=$(whoami) echo "Copying bashrc-mine to home directory..." -cp $run_directory/bashrc-mine /home/$user/.bashrc-mine +cp $run_directory/bashrc-mine /home/$user/.bashrc.d/ echo "Finished install. Exiting..." exit 0