Skip to content
Snippets Groups Projects
Unverified Commit b9cb18c0 authored by Max Adamo's avatar Max Adamo
Browse files

fix: update version extraction to use double quotes in create-packages.sh

parent 73a5b6be
No related branches found
No related tags found
No related merge requests found
...@@ -49,7 +49,7 @@ usage() { ...@@ -49,7 +49,7 @@ usage() {
} }
parameters=0 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" -- "$@") OPTS=$(getopt -o "h,d,r,w,a" --longoptions "help,deb,rpm,whl,all,push-deb" -- "$@")
if [ $? != 0 ]; then if [ $? != 0 ]; then
usage usage
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment