aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2017-02-08 14:31:36 -0700
committerkballou <kballou@devnulllabs.io>2017-02-08 14:31:36 -0700
commit9995c639bf6e5c40278e57c0043f25c372e4c8e7 (patch)
tree755165712f519ede460fc02cc85e908e5cf1b9d1
parent7d94ed703525c008af23f5284322b79e4a32aa3e (diff)
downloadexgit-9995c639bf6e5c40278e57c0043f25c372e4c8e7.tar.gz
exgit-9995c639bf6e5c40278e57c0043f25c372e4c8e7.tar.xz
WIP: Update escript: fix tests
-rw-r--r--lib/exgit/escript.ex4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/exgit/escript.ex b/lib/exgit/escript.ex
index b569d64..5637928 100644
--- a/lib/exgit/escript.ex
+++ b/lib/exgit/escript.ex
@@ -7,7 +7,7 @@ defmodule Exgit.Escript do
Main entry for Exgit
iex> main([])
- :error
+ {:error, "Missing Argument"}
"""
@spec main(List.t) :: binary | :error | {:error, binary}
def main([]) do
@@ -24,8 +24,6 @@ defmodule Exgit.Escript do
args
|> hd()
|> parse_packfile()
- |> inspect()
- |> IO.puts
end
@doc """