Skip to content

Commit

Permalink
shellcheck cd complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
Starttoaster committed Aug 29, 2023
1 parent f46492b commit 4038ea5
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 @@ -128,7 +128,8 @@ if [[ -n "$install_bladebit" && "$install_bladebit" == 'true' ]]; then
DEBIAN_FRONTEND=noninteractive apt update
DEBIAN_FRONTEND=noninteractive apt install -y build-essential cmake libgmp-dev libnuma-dev git
cd / || exit 1
git clone https://github.com/Chia-Network/bladebit.git && cd bladebit
git clone https://github.com/Chia-Network/bladebit.git
cd bladebit || exit 1
mkdir -p build && cd build
cmake ..
cmake --build . --target bladebit --config Release
Expand Down

0 comments on commit 4038ea5

Please sign in to comment.