From 0880a196831dd00fd869a80f0c55c4fc6a91e6aa Mon Sep 17 00:00:00 2001 From: Wojtek Mach Date: Tue, 19 Jul 2022 14:58:43 +0200 Subject: [PATCH] Fix bundler path --- app_bundler/demo/mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app_bundler/demo/mix.exs b/app_bundler/demo/mix.exs index 47022b492..91b6b0d72 100644 --- a/app_bundler/demo/mix.exs +++ b/app_bundler/demo/mix.exs @@ -21,7 +21,7 @@ defmodule Demo.MixProject do defp deps do [ - {:app_bundler, path: "../.."} + {:app_bundler, path: ".."} ] end