diff options
Diffstat (limited to 'sh')
-rw-r--r-- | sh/.config/sh/environment.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/.config/sh/environment.sh b/sh/.config/sh/environment.sh index 3d02b22..f02296d 100644 --- a/sh/.config/sh/environment.sh +++ b/sh/.config/sh/environment.sh @@ -2,7 +2,7 @@ export XDG_CONFIG_HOME="${HOME}/.config" export XDG_CACHE_HOME="${HOME}/.cache" export XDG_DATA_HOME="${HOME}/.local/share" -if [[ -d "${HOME}/bin" ]] +if [ -d "${HOME}/bin" ] then export PATH="${PATH}:${HOME}/bin" fi |