Current section
28 Versions
Jump to
Current section
28 Versions
Compare versions
3
files changed
+4
additions
-3
deletions
| @@ -42,4 +42,4 @@ | |
| 42 42 | {<<"optional">>,false}, |
| 43 43 | {<<"repository">>,<<"hexpm">>}, |
| 44 44 | {<<"requirement">>,<<">= 0.1.0">>}]]}. |
| 45 | - {<<"version">>,<<"0.1.6">>}. |
| 45 | + {<<"version">>,<<"0.1.7">>}. |
| @@ -66,7 +66,8 @@ defmodule Analyze do | |
| 66 66 | end |
| 67 67 | |
| 68 68 | defp configure(["--status-refresh-token", token | rest]) do |
| 69 | - Application.put_env(:analyze, :status_refresh_token, token) |
| 69 | + [a, b] = String.split(token, ":", parts: 2) |
| 70 | + Application.put_env(:analyze, :status_refresh_token, {a, b}) |
| 70 71 | configure(rest) |
| 71 72 | end |
| @@ -6,7 +6,7 @@ defmodule Analyze.Mixfile do | |
| 6 6 | app: :analyze, |
| 7 7 | description: "Mix task to analyze and report Elixir code.", |
| 8 8 | # escript: [main_module: Analyze], |
| 9 | - version: "0.1.6", |
| 9 | + version: "0.1.7", |
| 10 10 | elixir: "~> 1.7", |
| 11 11 | build_embedded: Mix.env() == :prod, |
| 12 12 | start_permanent: Mix.env() == :prod, |