Hi, in file website/static/install/install.sh (the install script mentioned on the website), the regex on line 29 no longer works.
In the api call the tag_name returned is like this
Which "\K[0-9.]+" does not match, since there is a v inside the "", which results in a failing match and consequently (correctly) failing the script due to the set -e flag. This can be easily fixed ig.
Hi, in file website/static/install/install.sh (the install script mentioned on the website), the regex on line 29 no longer works.
In the api call the tag_name returned is like this
Which
"\K[0-9.]+"does not match, since there is avinside the"", which results in a failing match and consequently (correctly) failing the script due to theset -eflag. This can be easily fixed ig.