diff --git a/apps/emqx/rebar.config b/apps/emqx/rebar.config index 0d58cf4b8..3638b37ad 100644 --- a/apps/emqx/rebar.config +++ b/apps/emqx/rebar.config @@ -13,7 +13,7 @@ {deps, [ {lc, {git, "https://github.com/qzhuyan/lc.git", {tag, "0.1.2"}}} , {gproc, {git, "https://github.com/uwiger/gproc", {tag, "0.8.0"}}} - , {typerefl, {git, "https://github.com/k32/typerefl", {tag, "0.8.6"}}} + , {typerefl, {git, "https://github.com/ieQu1/typerefl", {tag, "0.8.6"}}} , {jiffy, {git, "https://github.com/emqx/jiffy", {tag, "1.0.5"}}} , {cowboy, {git, "https://github.com/emqx/cowboy", {tag, "2.9.0"}}} , {esockd, {git, "https://github.com/emqx/esockd", {tag, "5.9.0"}}} diff --git a/apps/emqx_dashboard/rebar.config b/apps/emqx_dashboard/rebar.config index 7dc78ebb0..8a44ace37 100644 --- a/apps/emqx_dashboard/rebar.config +++ b/apps/emqx_dashboard/rebar.config @@ -1,7 +1,7 @@ %% -*- mode: erlang -*- {deps, - [ {typerefl, {git, "https://github.com/k32/typerefl", {tag, "0.8.6"}}} + [ {typerefl, {git, "https://github.com/ieQu1/typerefl", {tag, "0.8.6"}}} , {emqx, {path, "../emqx"}} ]}. diff --git a/mix.exs b/mix.exs index 0bbf49c90..367d3d737 100644 --- a/mix.exs +++ b/mix.exs @@ -48,7 +48,7 @@ defmodule EMQXUmbrella.MixProject do [ {:lc, github: "qzhuyan/lc", tag: "0.1.2"}, {:redbug, "2.0.7"}, - {:typerefl, github: "k32/typerefl", tag: "0.8.6", override: true}, + {:typerefl, github: "ieQu1/typerefl", tag: "0.8.6", override: true}, {:ehttpc, github: "emqx/ehttpc", tag: "0.1.12"}, {:gproc, github: "uwiger/gproc", tag: "0.8.0", override: true}, {:jiffy, github: "emqx/jiffy", tag: "1.0.5", override: true}, @@ -64,7 +64,7 @@ defmodule EMQXUmbrella.MixProject do {:emqtt, github: "emqx/emqtt", tag: "1.4.3", override: true}, {:rulesql, github: "emqx/rulesql", tag: "0.1.4"}, {:observer_cli, "1.7.1"}, - {:system_monitor, github: "k32/system_monitor", tag: "3.0.2"}, + {:system_monitor, github: "ieQu1/system_monitor", tag: "3.0.2"}, # in conflict by emqtt and hocon {:getopt, "1.0.2", override: true}, {:snabbkaffe, github: "kafka4beam/snabbkaffe", tag: "0.18.0", override: true}, diff --git a/rebar.config b/rebar.config index c6d374fca..37f59df9a 100644 --- a/rebar.config +++ b/rebar.config @@ -47,7 +47,7 @@ [ {lc, {git, "https://github.com/qzhuyan/lc.git", {tag, "0.1.2"}}} , {redbug, "2.0.7"} , {gpb, "4.11.2"} %% gpb only used to build, but not for release, pin it here to avoid fetching a wrong version due to rebar plugins scattered in all the deps - , {typerefl, {git, "https://github.com/k32/typerefl", {tag, "0.8.6"}}} + , {typerefl, {git, "https://github.com/ieQu1/typerefl", {tag, "0.8.6"}}} , {ehttpc, {git, "https://github.com/emqx/ehttpc", {tag, "0.1.12"}}} , {gproc, {git, "https://github.com/uwiger/gproc", {tag, "0.8.0"}}} , {jiffy, {git, "https://github.com/emqx/jiffy", {tag, "1.0.5"}}} @@ -63,7 +63,7 @@ , {emqtt, {git, "https://github.com/emqx/emqtt", {tag, "1.4.3"}}} , {rulesql, {git, "https://github.com/emqx/rulesql", {tag, "0.1.4"}}} , {observer_cli, "1.7.1"} % NOTE: depends on recon 2.5.x - , {system_monitor, {git, "https://github.com/k32/system_monitor", {tag, "3.0.2"}}} + , {system_monitor, {git, "https://github.com/ieQu1/system_monitor", {tag, "3.0.2"}}} , {getopt, "1.0.2"} , {snabbkaffe, {git, "https://github.com/kafka4beam/snabbkaffe.git", {tag, "0.18.0"}}} , {hocon, {git, "https://github.com/emqx/hocon.git", {tag, "0.24.0"}}} diff --git a/scripts/spellcheck b/scripts/spellcheck index 7bf999fbd..b1ed4dbe4 100755 --- a/scripts/spellcheck +++ b/scripts/spellcheck @@ -7,7 +7,7 @@ else SCHEMA="$1" fi -docker run -d --name langtool "ghcr.io/k32/emqx-schema-validate:0.1.0" +docker run -d --name langtool "ghcr.io/ieQu1/emqx-schema-validate:0.1.0" docker exec -i langtool ./emqx_schema_validate - < "${SCHEMA}" success="$?" @@ -16,6 +16,6 @@ docker kill langtool || true docker rm langtool || true echo "If this script finds a false positive (e.g. when it things that a protocol name is a typo), -make a PR here: https://github.com/k32/emqx-schema-validate/blob/master/dict/en_spelling_additions.txt" +make a PR here: https://github.com/ieQu1/emqx-schema-validate/blob/master/dict/en_spelling_additions.txt" exit "$success"