Fix incorrect name in env name config

This commit is contained in:
2024-12-20 14:55:49 -05:00
parent fd4d7fcf1b
commit 5535baa6bc

View File

@@ -4,7 +4,7 @@ function configure() {
echo "cp .post-commit-hook .git/hooks/post-commit">./configure.sh echo "cp .post-commit-hook .git/hooks/post-commit">./configure.sh
read -p "Enter a name for this environment [development]: " envName read -p "Enter a name for this environment [development]: " envName
local envName=${baseName:-development} local envName=${envName:-development}
echo "git config set toolbox-dev-env.name ${envName}">>./configure.sh echo "git config set toolbox-dev-env.name ${envName}">>./configure.sh
read -p "Enter path of base image [registry.fedoraproject.org/fedora-toolbox]: " baseImage read -p "Enter path of base image [registry.fedoraproject.org/fedora-toolbox]: " baseImage