Skip to content

Commit 7cdc350

Browse files
authored
Fix in Makefile (#201)
Fixes #197
1 parent 56a8082 commit 7cdc350

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Makefile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ROOT=.
22
MK.pyver:=3
33

44
ifeq ($(wildcard $(ROOT)/deps/readies/mk),)
5-
$(error Submodules not present. Please run 'git submodule update --init --recursive')
5+
$(shell mkdir -p deps; cd deps; git clone https://github.com/RedisLabsModules/readies.git)
66
endif
77
include $(ROOT)/deps/readies/mk/main
88

@@ -52,12 +52,6 @@ TARGET=$(TARGET_DIR)/$(MODULE_NAME)
5252

5353
#----------------------------------------------------------------------------------------------
5454

55-
all: build
56-
57-
.PHONY: all
58-
59-
#----------------------------------------------------------------------------------------------
60-
6155
lint:
6256
cargo fmt -- --check
6357

0 commit comments

Comments
 (0)