changeset 479:91652f4b9752

Fix bash config install.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 11 Jun 2019 20:41:27 -0700
parents e79244688396
children 9df781913175 8f36fc391ddf
files install.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/install.py	Wed Feb 05 09:29:24 2020 -0800
+++ b/install.py	Tue Jun 11 20:41:27 2019 -0700
@@ -138,8 +138,8 @@
 
 @only_on_nix
 def install_bash():
-    mklink('bashrc/bashrc', '.bashrc')
-    mklink('bashrc/bash_profile', '.bash_profile')
+    mklink('bashrc/bashrc', '~/.bashrc')
+    mklink('bashrc/bash_profile', '~/.bash_profile')
 
 
 @only_on_nix