You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
** (RuntimeError) Could not find web path 'lib/app_web_web'.
lib/mix/utils.ex:24: Mix.ExAdmin.Utils.web_path/0
lib/mix/tasks/admin.install.ex:230: Mix.Tasks.Admin.Install.do_dashboard/1
lib/mix/tasks/admin.install.ex:55: Mix.Tasks.Admin.Install.do_install/1
(mix) lib/mix/task.ex:301: Mix.Task.run_task/3
(mix) lib/mix/cli.ex:75: Mix.CLI.run_task/2
Note the 'lib/app_web_web' on the first line of the error.
In lib/mix/utils.ex:24 it appended an extra _web, however Mix.Phoenix.otp_app should already return this as app_web.
This is for the phx-1.3 branch.
To reproduce:
{:ex_admin, github: "smpallen99/ex_admin", branch: "phx-1.3"}
/config/config.exs
:mix do deps.get, deps.compile
mix admin.install
Returned error is:
Note the 'lib/app_web_web' on the first line of the error.
In
lib/mix/utils.ex:24
it appended an extra_web
, howeverMix.Phoenix.otp_app
should already return this asapp_web
.Started fix in #423, but needs more work.
The text was updated successfully, but these errors were encountered: