Skip to content

Commit 69ac8fe

Browse files
authored
fix: fixup namespacing and packaging (#29)
1 parent 39d4b2f commit 69ac8fe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/expert/lib/mix/tasks/package.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ defmodule Mix.Tasks.Package do
270270
Namespace.Transform.Configs.apply_to_all(config_dest)
271271
end
272272

273-
@priv_apps [:engine]
273+
@priv_apps [:expert]
274274

275275
defp copy_priv_files(package_root) do
276276
priv_dest_dir = priv_path(package_root)

apps/forge/lib/forge/namespace/transform/configs.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Forge.Namespace.Transform.Configs do
22
def apply_to_all(base_directory) do
33
base_directory
4-
|> Path.join("**/releases/**/runtime.exs")
4+
|> Path.join("**/runtime.exs")
55
|> Path.wildcard()
66
|> Enum.map(&Path.absname/1)
77
|> tap(fn paths ->

0 commit comments

Comments
 (0)