Skip to content

Commit 6a9ce82

Browse files
authored
Merge pull request #17 from NarrativeApp/fix/service-name-should-be-a-string
fix: service_name needs to be a string not an atom
2 parents 20b8478 + bfeca75 commit 6a9ce82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mix/tasks/deploy.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ defmodule Mix.Tasks.Deploy do
2323

2424
app_name = mix_config[:app]
2525

26-
service_name = app_name
26+
service_name = app_name |> to_string()
2727

2828
ext_name =
2929
app_name

0 commit comments

Comments
 (0)