From 7258ab9851a0447adc4d95c1e806763f551be152 Mon Sep 17 00:00:00 2001 From: Sergey Ivlev Date: Thu, 28 Jul 2016 11:48:35 +0300 Subject: [PATCH] fix mix.exs warning elixir 1.4.0 warning: variable "package" does not exist and is being expanded to "package()", please use parentheses to remove the ambiguity or change the variable name /home/ ... /deps/jsx/mix.exs:10 --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 17272aa..dfc2aef 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ use Mix.Project version: "2.8.0", description: "an erlang application for consuming, producing and manipulating json. inspired by yajl", deps: deps(Mix.env), - package: package, + package: package(), language: :erlang, erlc_options: opts(Mix.env) ]