summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul J. Davis <paul.joseph.davis@gmail.com>2014-08-23 12:33:11 -0500
committerJay Doane <jaydoane@apache.org>2021-04-19 00:35:19 -0700
commit26e752190ed3c0e9b5259e40504277cb0617554b (patch)
treeb82162c2178999231903c732e4faca6df88f83eb
parent7f722fc8fcc4fb0ae6caf769b10cd214aa4f841a (diff)
downloadcouchdb-26e752190ed3c0e9b5259e40504277cb0617554b.tar.gz
Remove packaged rebar
-rw-r--r--src/weatherreport/Makefile14
-rwxr-xr-xsrc/weatherreport/rebarbin148150 -> 0 bytes
2 files changed, 7 insertions, 7 deletions
diff --git a/src/weatherreport/Makefile b/src/weatherreport/Makefile
index f7901673e..7c33c9115 100644
--- a/src/weatherreport/Makefile
+++ b/src/weatherreport/Makefile
@@ -3,25 +3,25 @@
all: deps compile escriptize
compile:
- ./rebar compile
+ rebar compile
deps:
- ./rebar get-deps
+ rebar get-deps
clean:
- ./rebar clean
+ rebar clean
distclean: clean
- ./rebar delete-deps
+ rebar delete-deps
test:
- ./rebar compile eunit
+ rebar compile eunit
escriptize:
- ./rebar escriptize
+ rebar escriptize
##
## Doc targets
##
docs:
- ./rebar doc skip_deps=true
+ rebar doc skip_deps=true
diff --git a/src/weatherreport/rebar b/src/weatherreport/rebar
deleted file mode 100755
index c66b3e626..000000000
--- a/src/weatherreport/rebar
+++ /dev/null
Binary files differ