From 5535baa6bc7cfae29ea903125b7adce8fbad4511 Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Fri, 20 Dec 2024 14:55:49 -0500 Subject: [PATCH] Fix incorrect name in env name config --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index ea5efc9..682ee85 100755 --- a/setup.sh +++ b/setup.sh @@ -4,7 +4,7 @@ function configure() { echo "cp .post-commit-hook .git/hooks/post-commit">./configure.sh 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 read -p "Enter path of base image [registry.fedoraproject.org/fedora-toolbox]: " baseImage