Skip to content

Commit

Permalink
fixed compile warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
smpallen99 committed May 23, 2014
1 parent a9057bd commit 9274036
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Elixir Release Manager RPM Generator Plug-in
# Elixir Release Manager RPM Generator

## Usage

Expand Down
2 changes: 1 addition & 1 deletion lib/exrm_rpm/exrm_rpm.ex
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ defmodule ReleaseManager.Plugin.Rpm do
config
end

defp do_init_script(%Config{name: name, version: version} = config) do
defp do_init_script(%Config{name: name, version: _version} = config) do
debug "Generating init.d script..."

dest = Path.join([config.build_dir, "SOURCES", "#{name}"])
Expand Down
1 change: 0 additions & 1 deletion lib/mix/tasks/release.copy_rpm_templates.ex
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ defmodule Mix.Tasks.Release.Copy_rpm_templates do
cwd = File.cwd!
priv = config |> Keyword.get(:priv_path)
overwrite? = config |> Keyword.get(:overwrite)
name = Mix.project |> Keyword.get(:app) |> atom_to_binary

templ_dir = Path.join([cwd, @_RPM_TEMPLATE_DIR])

Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule ExrmRpm.Mixfile do

def project do
[app: :exrm_rpm,
version: "0.0.2",
version: "0.0.3",
elixir: "~> 0.13.2",
deps: deps]
end
Expand All @@ -14,7 +14,7 @@ defmodule ExrmRpm.Mixfile do

defp deps do
[
{:exrm, "~>0.6.12"}
{:exrm, "~>0.6.14"}
]
end
end

0 comments on commit 9274036

Please sign in to comment.