From b9cb18c065be4459d9cca02cb90f837582f274a7 Mon Sep 17 00:00:00 2001 From: Massimiliano Adamo <maxadamo@gmail.com> Date: Fri, 14 Feb 2025 13:40:27 +0100 Subject: [PATCH] fix: update version extraction to use double quotes in create-packages.sh --- create-packages.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-packages.sh b/create-packages.sh index 5374923..420ae3a 100755 --- a/create-packages.sh +++ b/create-packages.sh @@ -49,7 +49,7 @@ usage() { } parameters=0 -VERSION=$(awk -F\' '/__version__/{print $2}' wile_coyote/__init__.py) +VERSION=$(awk -F\" '/__version__/{print $2}' wile_coyote/__init__.py) OPTS=$(getopt -o "h,d,r,w,a" --longoptions "help,deb,rpm,whl,all,push-deb" -- "$@") if [ $? != 0 ]; then usage -- GitLab