From 3efb48fd6c73ff3117a3f08d2a59d993682f373b Mon Sep 17 00:00:00 2001 From: Krzesimir Nowak Date: Wed, 25 Oct 2023 09:42:45 +0200 Subject: [PATCH] sdk_lib: Fix a quoting issue --- sdk_lib/sdk_init_selfcontained.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk_lib/sdk_init_selfcontained.sh b/sdk_lib/sdk_init_selfcontained.sh index 2292a4698b..50499c04de 100755 --- a/sdk_lib/sdk_init_selfcontained.sh +++ b/sdk_lib/sdk_init_selfcontained.sh @@ -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"