From c0a82e95df05fa58573816afd698c453eb20ac7e Mon Sep 17 00:00:00 2001 From: Nelson Ochoa Date: Thu, 16 Feb 2023 08:09:55 -0700 Subject: [PATCH] fix: call python templates variable --- templates/python/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/python/build.sh b/templates/python/build.sh index 0e19bb0..7892bc8 100755 --- a/templates/python/build.sh +++ b/templates/python/build.sh @@ -2,7 +2,7 @@ python_templates=$(ls -d */ | sed 's/\//\n/g') current_directory=`pwd` -for template in $maven_templates; do +for template in $python_templates; do cd $current_directory/$template echo "Building $template template" done \ No newline at end of file