diff --git a/.gitignore b/.gitignore index 06e5705..e721792 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ .DS_Store minimal/* no_customization/* -opionated/* +opinionated/* recommended/* outputs/* diff --git a/README.md b/README.md index f414093..3d42ff4 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Tools that should work: - nudge - UMAD -## Opionated +## Opinionated This is a Python.framework that contains everything from Recommended, and libraries that various open source projects require. This is a **kitchen sink** approach, opting for the latest known packages. diff --git a/build_all_python_frameworks.zsh b/build_all_python_frameworks.zsh index 900e378..bffc1ec 100755 --- a/build_all_python_frameworks.zsh +++ b/build_all_python_frameworks.zsh @@ -10,4 +10,4 @@ TOOLSDIR=$(dirname $0) sudo "$TOOLSDIR/build_python_framework_pkgs.zsh" minimal sudo "$TOOLSDIR/build_python_framework_pkgs.zsh" no_customization sudo "$TOOLSDIR/build_python_framework_pkgs.zsh" recommended -sudo "$TOOLSDIR/build_python_framework_pkgs.zsh" opionated +sudo "$TOOLSDIR/build_python_framework_pkgs.zsh" opinionated diff --git a/build_python_framework_pkgs.zsh b/build_python_framework_pkgs.zsh index 135a4fb..45a23ff 100755 --- a/build_python_framework_pkgs.zsh +++ b/build_python_framework_pkgs.zsh @@ -17,12 +17,12 @@ if [ -n "$1" ]; then TYPE=$1 elif [[ "$1" == "no_customization" ]]; then TYPE=$1 - elif [[ "$1" == "opionated" ]]; then + elif [[ "$1" == "opinionated" ]]; then TYPE=$1 elif [[ "$1" == 'recommended' ]]; then TYPE=$1 else - echo "Specified positional argument other than opionated or recommended. Using minimal workflow" + echo "Specified positional argument other than opinionated or recommended. Using minimal workflow" TYPE='minimal' fi else