Adapt to new .bashrc.d structure for extensions

This commit is contained in:
Alexandre CATTEAU 2022-03-14 19:09:40 +01:00
parent 81f23e480b
commit b8fff0ab5a
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# ~/.bashrc-mine # ~/.bashrc.d/bashrc-mine
# byMasterKTO # byMasterKTO
## SSH configuration ## SSH configuration

View File

@ -4,7 +4,7 @@ run_directory=$(dirname "$0")
$user=$(whoami) $user=$(whoami)
echo "Copying bashrc-mine to home directory..." 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..." echo "Finished install. Exiting..."
exit 0 exit 0