diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-05-27 21:11:39 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-05-27 21:11:39 +0200 |
commit | 8e97cff50b77a5c381447e675ea448865aa69d74 (patch) | |
tree | 0334953d72201a7987d41d0df8d2ea9f1b06c76a /.config/shell/profile | |
parent | 5f6c5f827e1789f27339e2f0e63d298cecb039d8 (diff) |
Bug fix in PATH export, added some of Luke's scripts
Diffstat (limited to '.config/shell/profile')
-rwxr-xr-x | .config/shell/profile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/shell/profile b/.config/shell/profile index 0630427..a78bc45 100755 --- a/.config/shell/profile +++ b/.config/shell/profile @@ -3,7 +3,7 @@ # profile file. Runs on login. Environmental variables are set here. # Adds `~/.local/bin` to $PATH -export PATH="$PATH:${$(find ~/.local/bin -type -d printf %p:)%%:}" +export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}" unsetopt PROMPT_SP |