From 8b786dcbd3765cacaa55b45675711dc4836f7272 Mon Sep 17 00:00:00 2001 From: Chris Marslender Date: Fri, 20 Sep 2024 16:12:36 -0500 Subject: [PATCH] Fix some lint (#274) --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 139f822..e16f001 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -18,7 +18,7 @@ if [[ -n ${source_ref} ]]; then rm -rf /chia-blockchain git clone --recurse-submodules=mozilla-ca https://github.com/Chia-Network/chia-blockchain.git /chia-blockchain cd /chia-blockchain || exit 1 - git checkout ${source_ref} + git checkout "${source_ref}" /bin/sh ./install.sh -s fi