-
Notifications
You must be signed in to change notification settings - Fork 54
Open
Labels
Description
The keep command does not appear to be changing CDPATH even though the exact same command run without keep seems to work:
(base) user:~$ echo $CDPATH
/home/mike
(base) user:~$ keep run set
1 $ export CDPATH=.:~/Documents/programming_projects/ :: Set CDPATH to ~ and programming_projects
Execute
$ export CDPATH=.:~/Documents/programming_projects/ :: Set CDPATH to ~ and programming_projects
? [Y/n]: y
(base) user:~$ echo $CDPATH
/home/mike
(base) user:~$ export CDPATH=.:~/Documents/programming_projects/
(base) user:~$ echo $CDPATH
.:/home/mike/Documents/programming_projects/
Any idea whats going on here?