refactor(build): Deterministic code generation
The rebar plugin grpcbox_plugin always re-generates modules with a timestamp, which makes the stamping script to always result in a new stamp after each build. Issue has been sent https://github.com/tsloughter/grpcbox_plugin/issues/12
This commit is contained in:
parent
096e27dcd0
commit
2dce1883d5
|
@ -1,7 +1,7 @@
|
||||||
%%-*- mode: erlang -*-
|
%%-*- mode: erlang -*-
|
||||||
{plugins,
|
{plugins,
|
||||||
[rebar3_proper,
|
[rebar3_proper,
|
||||||
{grpcbox_plugin, {git, "https://github.com/HJianBo/grpcbox_plugin", {branch, "master"}}}
|
{grpcbox_plugin, {git, "https://github.com/zmstone/grpcbox_plugin", {branch, "master"}}}
|
||||||
]}.
|
]}.
|
||||||
|
|
||||||
{deps,
|
{deps,
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
{parse_transform}]}.
|
{parse_transform}]}.
|
||||||
|
|
||||||
{plugins,
|
{plugins,
|
||||||
[{grpcbox_plugin, {git, "https://github.com/HJianBo/grpcbox_plugin", {branch, "master"}}}
|
[{grpcbox_plugin, {git, "https://github.com/zmstone/grpcbox_plugin", {branch, "master"}}}
|
||||||
]}.
|
]}.
|
||||||
|
|
||||||
{deps,
|
{deps,
|
||||||
|
|
Loading…
Reference in New Issue