From f45f4528a49b6d45f9b35acf027955f7b0b0d803 Mon Sep 17 00:00:00 2001 From: Marnin Date: Mon, 15 Jun 2020 08:37:11 -0400 Subject: [PATCH 1/4] Fixed Typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. From b64bcda25aa7f15c2e4d3974b4facc9930c0505b Mon Sep 17 00:00:00 2001 From: Marnin Date: Mon, 15 Jun 2020 08:38:04 -0400 Subject: [PATCH 2/4] Fixed Typo --- build_all_python_frameworks.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 0bcadbebc31cfb09a03db75f1293c9a46f172d0e Mon Sep 17 00:00:00 2001 From: Marnin Date: Mon, 15 Jun 2020 08:38:36 -0400 Subject: [PATCH 3/4] Fixed Opinionated Typo --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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/* From de343551d4a2fd06822dcbf970b083b075c54df8 Mon Sep 17 00:00:00 2001 From: Marnin Date: Mon, 15 Jun 2020 08:39:26 -0400 Subject: [PATCH 4/4] Fixed Opinionated Typo --- build_python_framework_pkgs.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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