Skip to content
This repository has been archived by the owner on Apr 7, 2018. It is now read-only.

Commit

Permalink
Merge pull request #376 from zweizeichen/master
Browse files Browse the repository at this point in the history
Fixed typos
  • Loading branch information
bitwalker committed Jul 18, 2016
2 parents 9184f2e + c8b7435 commit 18d1cc7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/exrm/utils/utils.ex
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,13 @@ defmodule ReleaseManager.Utils do
{:rlx_prv_release, {:invalid_release_info, info}} ->
{:error, "Target release information is in an invalid format:\n#{inspect info}"}
{:rlx_prv_release, {:multiple_release_names, a, b}} ->
{:error, "Multiple releasees are defined, but no default was specified: #{a}, #{b}"}
{:error, "Multiple releases are defined, but no default was specified: #{a}, #{b}"}
{:rlx_prv_release, :no_releases_in_system} ->
{:error, "No releases have been defined! See the debug output for more information."}
{:rlx_prv_release, {:no_releases_for, name}} ->
{:error, "No releaases exist for #{name}. See the debug output for more information."}
{:error, "No releases exist for #{name}. See the debug output for more information."}
{:rlx_prv_release, {:release_not_found, {name, vsn}}} ->
{:error, "No such releaase: #{name}-#{vsn}. See the debug output for more information."}
{:error, "No such release: #{name}-#{vsn}. See the debug output for more information."}
{:rlx_prv_release, {:failed_solve, {:unreachable_package, missing_app}}} ->
{:error, "Unable to find application #{missing_app}. See the debug output for more information."}
{:rlx_prv_relup, {:relup_generation_error, current_name, upfrom_name}}->
Expand Down

0 comments on commit 18d1cc7

Please sign in to comment.