Skip to content

Commit

Permalink
Fix for commit sha being checked out (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmmarslender authored Sep 20, 2024
1 parent 5c8fdcb commit 01913a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ if [[ -n ${source_ref} ]]; then
DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y lsb-release sudo git

rm -rf /chia-blockchain
git clone --branch "${source_ref}" --recurse-submodules=mozilla-ca https://github.com/Chia-Network/chia-blockchain.git /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}
/bin/sh ./install.sh -s
fi

Expand Down

0 comments on commit 01913a0

Please sign in to comment.