Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
fix missing mix.exs in release (#20)
Browse files Browse the repository at this point in the history
* skip installing elixir on a publish-build

* include mix.exs file
  • Loading branch information
waisbrot authored Aug 24, 2016
1 parent 7cc31d9 commit db6ce63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/install-prereqs.bash
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash -ex

if [[ $TRAVIS_TAG && $TRAVIS_OTP_RELEASE != $MAIN_OTP ]]; then
echo Skip installation for non-primary tests of a tag-build
if [[ $TRAVIS_TAG && ($TRAVIS_OTP_RELEASE != $MAIN_OTP || $REBAR_VSN -ne 3) ]]; then
echo Skip installation for non-primary test of a tag-build
exit 0
fi

Expand Down
1 change: 1 addition & 0 deletions src/dogstatsd.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
{licenses, ["LAGPL"]},
{links, [{"GitHub", "https://github.com/WhoopInc/dogstatsde"}]},
{pkg_name, "dogstatsde"},
{include_files, ["mix.exs"]},
{build_tools, [<<"rebar3">>, <<"mix">>]}
]}.

0 comments on commit db6ce63

Please sign in to comment.