Selaa lähdekoodia

修正依赖所用的分支名称

Ultrakid 3 vuotta sitten
vanhempi
commit
d7363060cc
2 muutettua tiedostoa jossa 6 lisäystä ja 4 poistoa
  1. 2 2
      rebar.config
  2. 4 2
      rebar.config.script

+ 2 - 2
rebar.config

@@ -1,7 +1,7 @@
 {deps, [
-    {cuttlefish, {git, "https://github.com/emqx/cuttlefish.git",  {branch, "master"}}},
+    {cuttlefish, {git, "https://github.com/emqx/cuttlefish.git",  {branch, "main"}}},
     {ekaf, {git, "https://github.com/helpshift/ekaf.git",  {branch, "master"}}},
-    {emqx, {git, "https://github.com/emqx/emqx.git",  {branch, "master"}}}
+    {emqx, {git, "https://github.com/emqx/emqx.git",  {branch, "main-v4.3"}}}
 ]}.
 
 {erl_opts, [debug_info]}.

+ 4 - 2
rebar.config.script

@@ -39,9 +39,11 @@ UrlPrefix = "https://github.com/emqx/",
 
 EMQX_DEP = {emqx, {git, UrlPrefix ++ "emqx", {branch, BRANCH}}},
 
-EMQX_RELOADER_DEP = {emqx_reloader, {git, UrlPrefix ++ "emqx-reloader", {branch, BRANCH}}},
+%% EMQX_RELOADER_DEP = {emqx_reloader, {git, UrlPrefix ++ "emqx-reloader", {branch, BRANCH}}},
 
-NewDeps = [EMQX_DEP, EMQX_RELOADER_DEP | DEPS],
+%% NewDeps = [EMQX_DEP, EMQX_RELOADER_DEP | DEPS],
+
+NewDeps = [EMQX_DEP| DEPS],
 
 CONFIG2 = lists:keystore(deps, 1, CONFIG1, {deps, NewDeps}),