Skip to content

Commit

Permalink
Merge pull request #17 from NarrativeApp/feat/leave-service-names-alone
Browse files Browse the repository at this point in the history
fix: ext_name needs to be a string
  • Loading branch information
puzza007 authored May 21, 2024
2 parents 613b1a8 + 01eb7bc commit 2967cf5
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 2967cf5

Please sign in to comment.