mirror of
https://github.com/MillironX/dotfiles.git
synced 2024-11-14 19:03:09 +00:00
Make profile POSIX compliant
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
parent
506830ab9b
commit
d508b92efd
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
# shellcheck shell=sh
|
||||
# User specific environment
|
||||
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
|
||||
then
|
||||
export PATH="$HOME/.local/bin:$HOME/bin:$PATH"
|
||||
if ! [ "$(expr "$PATH" : "$HOME/.local/bin:$HOME/bin:")" ];then
|
||||
export PATH="$HOME/.local/bin:$HOME/bin:$PATH"
|
||||
fi
|
||||
|
||||
# Linuxbrew setup
|
||||
|
|
Loading…
Reference in a new issue