From 4e920cf585ea5a3cc41463a255447e6c7679a9e4 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 21 Jan 2025 13:44:55 -0500 Subject: [PATCH] templates/python: fix arg count in setup --- templates/python/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/python/setup b/templates/python/setup index eba97e5..2914313 100755 --- a/templates/python/setup +++ b/templates/python/setup @@ -3,7 +3,7 @@ set -e -if [ $# -lt 3 ]; then +if [ $# -lt 1 ]; then echo "Not enough arguments" echo 'usage: ./setup basename' exit 1