Skip to content

Commit

Permalink
Fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Arjav-Patel authored Oct 4, 2023
2 parents 2044bbb + 2dc79ea commit cfb156c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
24 changes: 12 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,39 +5,39 @@ all: compile escriptize eunit ct xref dialyze edoc
ci: compile escriptize eunit ct xref dialyze

compile:
@./rebar3 as dev compile
@rebar3 as dev compile

xref:
@./rebar3 as dev xref
@rebar3 as dev xref

clean:
@./rebar3 clean
@rebar3 clean

ct: escriptize
@CMD_TOOL=$(CWD)/bbmustache ./rebar3 ct
@CMD_TOOL=$(CWD)/bbmustache rebar3 ct

cover:
@./rebar3 cover
@rebar3 cover

eunit:
@./rebar3 eunit
@rebar3 eunit

edoc:
@./rebar3 as doc edoc
@rebar3 as doc edoc

start:
@./rebar3 as dev shell
@rebar3 as dev shell

dialyze:
@./rebar3 as dev dialyzer
@rebar3 as dev dialyzer

bench:
@./rebar3 as test compile
@./rebar3 as bench compile
@rebar3 as test compile
@rebar3 as bench compile
@./benchmarks/bench.escript

escriptize:
@./rebar3 as dev escriptize
@rebar3 as dev escriptize
@cp _build/dev/bin/bbmustache .

install: escriptize
Expand Down
3 changes: 1 addition & 2 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@
{profiles, [{test, [{erl_opts, [export_all]},
{deps,
[
{jsone, "1.4.6"},
{mustache_spec, ".*", {git, "https://github.com/soranoba/spec.git", {tag, "v1.2.2-erl"}}}
{jsone, "1.4.6"}
]},
{plugins, [rebar3_raw_deps]}
]},
Expand Down
Binary file removed rebar3
Binary file not shown.

0 comments on commit cfb156c

Please sign in to comment.