Skip to content

Commit

Permalink
fix: don't replace underscores in service_name with hyphens
Browse files Browse the repository at this point in the history
  • Loading branch information
puzza007 committed Apr 5, 2024
1 parent 6134a88 commit d717f8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/mix/tasks/deploy.ex
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ defmodule Mix.Tasks.Deploy do

app_name = mix_config[:app]

service_name = ext_name

ext_name =
app_name
|> to_string
|> String.replace("_", "-")

service_name = ext_name

module_name =
app_name
|> to_string
Expand Down

0 comments on commit d717f8e

Please sign in to comment.