commit b0c112c5325bead2d546d2139df50a0c1cd1a72f parent 1e11da5d6dca09704cebd6538b070dba159dcecb Author: Jake Bauer <jbauer@paritybit.ca> Date: Fri, 19 Jun 2020 15:47:10 -0400 Fix PATH if statement in .profile Diffstat:
M | .profile | | | 8 | ++++---- |
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.profile b/.profile @@ -17,16 +17,16 @@ if [ -n "$BASH_VERSION" ]; then fi # Set PATH to include my local scripts -if [ -d "$HOME/scripts/bash" ]; then +if [ -d "$HOME/docs/scripts/bash" ]; then PATH="$PATH:$HOME/docs/scripts/bash" fi -if [ -d "$HOME/scripts/sh" ]; then +if [ -d "$HOME/docs/scripts/sh" ]; then PATH="$PATH:$HOME/docs/scripts/sh" fi -if [ -d "$HOME/scripts/perl" ]; then +if [ -d "$HOME/docs/scripts/perl" ]; then PATH="$PATH:$HOME/docs/scripts/perl" fi -if [ -d "$HOME/scripts/python" ]; then +if [ -d "$HOME/docs/scripts/python" ]; then PATH="$PATH:$HOME/docs/scripts/python" fi