werf/multiwerf

Installation script fails on MacOS

Closed this issue · 1 comments

Unable to install multiwerf on mac os:

get_latest_version leaves '\r' at the end of version:

VERSION=$'v1.0.12\r'

Current workaround that works for me:

version="$(curl -sI "${url}" | grep "Location:" | sed 's%.*multiwerf/%%;s%/view.*%%' | tr -d '\r' )"

fixed in #26