Skip to content

Commit

Permalink
fix: ext_name needs to be a string
Browse files Browse the repository at this point in the history
  • Loading branch information
puzza007 committed May 21, 2024
1 parent 852eab5 commit 01eb7bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
elixir 1.14.5-otp-24
erlang 24.3.4.17
2 changes: 1 addition & 1 deletion lib/mix/tasks/systemd.ex
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defmodule Mix.Tasks.Systemd do

app_name = mix_config[:app]

ext_name = app_name
ext_name = app_name |> to_string

service_name = ext_name

Expand Down

0 comments on commit 01eb7bc

Please sign in to comment.