From d065dbcc4e242a85ca2516fdadd0082712871fd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Tue, 7 Mar 2017 12:45:21 +0100 Subject: [PATCH] Remove warnings on Elixir v1.4 --- VERSION | 1 - mix.exs | 5 +---- 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 VERSION diff --git a/VERSION b/VERSION deleted file mode 100644 index 6e8bf73..0000000 --- a/VERSION +++ /dev/null @@ -1 +0,0 @@ -0.1.0 diff --git a/mix.exs b/mix.exs index 94f3211..4f792f8 100644 --- a/mix.exs +++ b/mix.exs @@ -1,6 +1,4 @@ defmodule Mix.Tasks.Compile.Hoedown do - @shortdoc "Compiles Hoedown" - def run(_) do if match? {:win32, _}, :os.type do {result, _error_code} = System.cmd("nmake", ["/F", "Makefile.win", "priv\\markdown.dll"], stderr_to_stdout: true) @@ -9,7 +7,6 @@ defmodule Mix.Tasks.Compile.Hoedown do {result, _error_code} = System.cmd("make", ["priv/markdown.so"], stderr_to_stdout: true) IO.binwrite result end - :ok end end @@ -17,7 +14,7 @@ end defmodule Markdown.Mixfile do use Mix.Project - @version String.strip(File.read!("VERSION")) + @version "0.1.0" def project do [app: :markdown,