diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-15 11:09:14 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-15 11:10:03 +0100 |
commit | 7700b7022711c47cd4cbda280d739126c10e87da (patch) | |
tree | aba601042f5834c6ae64ee17093018497f47c72e | |
parent | tmux: fix configuration on new & old machines (diff) | |
download | linux-home-7700b7022711c47cd4cbda280d739126c10e87da.tar.gz linux-home-7700b7022711c47cd4cbda280d739126c10e87da.zip |
.profile: add brew's unversioned python symlinks
-rw-r--r-- | %HOME%/.profile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/%HOME%/.profile b/%HOME%/.profile index 1f64f7a..02146b4 100644 --- a/%HOME%/.profile +++ b/%HOME%/.profile @@ -37,7 +37,8 @@ brew_setup() { path_export \ "$prefix/opt/coreutils/libexec/gnubin" \ "$prefix/opt/findutils/libexec/gnubin" \ - "$prefix/opt/grep/libexec/gnubin" + "$prefix/opt/grep/libexec/gnubin" \ + "$prefix/opt/python/libexec/bin" } brew_setup |