summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorDom Rodriguez <shymega@shymega.org.uk>2017-04-18 18:50:16 +0200
committerDom Rodriguez <shymega@shymega.org.uk>2017-04-18 18:50:16 +0200
commit6f5fc931144805f116b68f47d76c74906d34d6d1 (patch)
tree07b2e89fc2b0a573513c357185a54ce86af1b24f /mix.exs
parentMerge pull request #61 from w1gz/avoid-latin1-charset (diff)
Fix lint errors with mix
This commit fixes the lint errors that Mix reports when building ExIRC. The errors are to do with package and deps being ambigious, and they should be called *as* functions, not variables.
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mix.exs b/mix.exs
index e5a132f..4c1bea3 100644
--- a/mix.exs
+++ b/mix.exs
@@ -2,14 +2,14 @@ defmodule ExIrc.Mixfile do
use Mix.Project
def project do
- [ app: :exirc,
+ [app: :exirc,
version: "1.0.0",
elixir: "~> 1.0",
description: "An IRC client library for Elixir.",
- package: package,
+ package: package(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: ["coveralls": :test, "coveralls.detail": :test, "coveralls.html": :test, "coveralls.post": :test],
- deps: deps ]
+ deps: deps()]
end
# Configuration for the OTP application