We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 792f5e1 commit 43e496fCopy full SHA for 43e496f
.gitignore
@@ -1,11 +1,10 @@
1
_build/
2
+rebar.lock
3
ebin/
-deps/
4
tests/
5
/basho_bench
6
/rel/basho_bench
7
package
8
-.rebar
9
*~
10
#*#
11
.DS_Store
Makefile
@@ -6,17 +6,17 @@ PKG_ID = basho-bench-$(PKG_VERSION)
PKG_BUILD = 1
BASE_DIR = $(shell pwd)
ERLANG_BIN = $(shell dirname $(shell which erl))
-REBAR ?= $(BASE_DIR)/rebar
+REBAR ?= $(BASE_DIR)/rebar3
OVERLAY_VARS ?=
12
13
all: deps compile
14
- $(REBAR) skip_deps=true escriptize
+ $(REBAR) escriptize
15
16
.PHONY: deps compile rel lock locked-all locked-deps
17
18
rel: deps compile
19
- cd rel && $(REBAR) generate skip_deps=true $(OVERLAY_VARS)
+ cd rel && $(REBAR) generate $(OVERLAY_VARS)
20
21
deps:
22
$(REBAR) get-deps
0 commit comments