Skip to content

Commit 97cb7ae

Browse files
committed
Makefile: remove -b option as it is not available on macOS
It does seem necessary also for this command.
1 parent 68eaf61 commit 97cb7ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ clean: ## Clean build artifacts
139139
download-circuits: ## Download the circuits used by Mina from GitHub
140140
@if [ ! -d "circuit-blobs" ]; then \
141141
git clone --depth 1 https://github.com/openmina/circuit-blobs.git; \
142-
ln -s -b "$$PWD"/circuit-blobs/* ledger/; \
142+
ln -s "$$PWD"/circuit-blobs/* ledger/; \
143143
else \
144144
echo "circuit-blobs already exists, skipping download."; \
145145
fi

0 commit comments

Comments
 (0)