fix: Actually use version number in mix.exs
This commit is contained in:
parent
25620a135d
commit
070b98775b
4 changed files with 4 additions and 2 deletions
|
@ -7,6 +7,7 @@ defmodule Legendary.Admin.MixProject do
|
|||
[
|
||||
app: :admin,
|
||||
version: "0.1.0",
|
||||
version: @version,
|
||||
build_path: "../../_build",
|
||||
config_path: "../../config/config.exs",
|
||||
deps_path: "../../deps",
|
||||
|
|
|
@ -6,7 +6,7 @@ defmodule Legendary.Content.MixProject do
|
|||
def project do
|
||||
[
|
||||
app: :content,
|
||||
version: "0.1.0",
|
||||
version: @version,
|
||||
build_path: "../../_build",
|
||||
config_path: "../../config/config.exs",
|
||||
deps_path: "../../deps",
|
||||
|
|
|
@ -6,7 +6,7 @@ defmodule Legendary.Core.MixProject do
|
|||
def project do
|
||||
[
|
||||
app: :core,
|
||||
version: "0.1.0",
|
||||
version: @version,
|
||||
build_path: "../../_build",
|
||||
config_path: "../../config/config.exs",
|
||||
deps_path: "../../deps",
|
||||
|
|
1
mix.exs
1
mix.exs
|
@ -6,6 +6,7 @@ defmodule Legendary.Mixfile do
|
|||
def project do
|
||||
[
|
||||
name: "Legendary",
|
||||
version: @version,
|
||||
apps_path: "apps",
|
||||
build_embedded: Mix.env() == :prod,
|
||||
start_permanent: Mix.env() == :prod,
|
||||
|
|
Loading…
Reference in a new issue