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