Skip to content

Commit a8227fc

Browse files
committed
typo in target command to mkdir
1 parent 316f722 commit a8227fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ STRESS_TIMEOUT ?= 120
3131
# Create the chainstate dir and extract an archive to it when the "up" target is used
3232
$(CHAINSTATE_DIR): /usr/bin/tar /usr/bin/zstd
3333
@if [ ! -d "$(CHAINSTATE_DIR)" ]; then \
34-
@mkdir -p $(CHAINSTATE_DIR)
34+
mkdir -p $(CHAINSTATE_DIR)
3535
@if [ "$(TARGET)" = "up" ]; then
3636
if [ -f "$(CHAINSTATE_ARCHIVE)" ]; then
3737
sudo tar --same-owner -xf $(CHAINSTATE_ARCHIVE) -C $(CHAINSTATE_DIR) || exit 1

0 commit comments

Comments
 (0)