This commit is contained in:
Erik Gomez
2020-06-15 09:19:57 -05:00
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
.DS_Store
minimal/*
no_customization/*
opionated/*
opinionated/*
recommended/*
outputs/*
+1 -1
View File
@@ -73,7 +73,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.
+1 -1
View File
@@ -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
+2 -2
View File
@@ -22,12 +22,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