From e469e4343ff46a0dc8ae55d7c11c72532f1d1985 Mon Sep 17 00:00:00 2001
From: Evan Pratten <evan@ewpratten.com>
Date: Thu, 19 Oct 2023 14:37:46 -0400
Subject: [PATCH] fix py paths

---
 configs/scripts/git-authors-multirepo | 2 +-
 configs/shells/bash/.bashrc           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/configs/scripts/git-authors-multirepo b/configs/scripts/git-authors-multirepo
index 648bada..e2ef19f 100755
--- a/configs/scripts/git-authors-multirepo
+++ b/configs/scripts/git-authors-multirepo
@@ -1,4 +1,4 @@
-#! /usr/bin/env python3
+#! /usr/bin/env python
 import subprocess
 import argparse
 import sys
diff --git a/configs/shells/bash/.bashrc b/configs/shells/bash/.bashrc
index 8669788..5b43631 100644
--- a/configs/shells/bash/.bashrc
+++ b/configs/shells/bash/.bashrc
@@ -16,4 +16,4 @@ export PATH="$HOME/.local/bin:$PATH"
 export PS1="(bash) \[\e[0;32m\]\u@\h \[\e[0;36m\]\w \[\e[0;36m\]\$ \[\e[0m\]"
 
 # If found, load studio python
-[[ -d "/c/Programs/software/win/core/python/python_3.7.7" ]] && export PATH="/c/Programs/software/win/core/python/python_3.7.7:$PATH"
+if [ -d "/c/Programs/software/win/core/python/python_3.7.7" ]; then export PATH="/c/Programs/software/win/core/python/python_3.7.7:$PATH"; fi