Browse Source

Remove rebar3 binary

Takeru Ohta 6 years ago
parent
commit
da850bda9f
3 changed files with 8 additions and 8 deletions
  1. 7 7
      .travis.yml
  2. 1 1
      Makefile
  3. BIN
      rebar3

+ 7 - 7
.travis.yml

@@ -12,13 +12,13 @@ otp_release:
 install:
   - sudo pip install codecov
 script:
-  - ./rebar3 compile
-  - ./rebar3 xref
-  - ./rebar3 eunit
-  - ./rebar3 dialyzer
-  - ./rebar3 edoc
-  - ./rebar3 cover
-  - ./rebar3 as test covertool generate
+  - rebar3 compile
+  - rebar3 xref
+  - rebar3 eunit
+  - rebar3 dialyzer
+  - rebar3 edoc
+  - rebar3 cover
+  - rebar3 as test covertool generate
   - cp _build/test/covertool/jsone.covertool.xml ./cobertura.xml
 
 after_success:

+ 1 - 1
Makefile

@@ -1,6 +1,6 @@
 all: compile xref eunit dialyze edoc
 
-rebar ?= ./rebar3
+rebar ?= rebar3
 rebar_cmd = $(rebar) $(profile:%=as %)
 
 compile:

BIN
rebar3