sdk_lib: Fix a quoting issue

This commit is contained in:
Krzesimir Nowak 2023-10-25 09:42:45 +02:00
parent 37d01fb82a
commit 3efb48fd6c

View File

@ -19,7 +19,7 @@ function clone_version() {
local dest="$2"
local version="$3"
git clone https://github.com/flatcar/$repo "$dest"
git clone "https://github.com/flatcar/$repo" "$dest"
git -C "${dest}" fetch --all
local tag=$(git -C "${dest}" tag -l | grep "${version}")
git -C "${dest}" checkout "$tag"