From cb7a4b301b5e18ec38f2c57f7dcb96e4402e72d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BC=D1=98=D0=B0=D0=BD=20=D0=93=D0=B5=D0=BE?= =?UTF-8?q?=D1=80=D0=B3=D0=B8=D0=B5=D0=B2=D1=81=D0=BA=D0=B8?= Date: Thu, 24 Nov 2022 01:10:49 +0100 Subject: [PATCH 1/2] fix help shell output, --eval is misindeted --eval Erlang term(s) to execute after the apps have been started, but before the shell is presented to the user --- apps/rebar/src/rebar_prv_shell.erl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/rebar/src/rebar_prv_shell.erl b/apps/rebar/src/rebar_prv_shell.erl index 3cbc74ded..7ec1b88a7 100644 --- a/apps/rebar/src/rebar_prv_shell.erl +++ b/apps/rebar/src/rebar_prv_shell.erl @@ -96,9 +96,9 @@ init(State) -> "Arguments passed to user_drv start function for " "creating custom shells."}, {eval, undefined, "eval", string, - "Erlang term(s) to execute after the apps have been - started, but before the shell is presented to the - user"} + "Erlang term(s) to execute after the apps have been " + "started, but before the shell is presented to the " + "user"} ]} ]) ), From 777960615f7ba7b0011e2d7312e7d4e8ec353dac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BC=D1=98=D0=B0=D0=BD=20=D0=93=D0=B5=D0=BE?= =?UTF-8?q?=D1=80=D0=B3=D0=B8=D0=B5=D0=B2=D1=81=D0=BA=D0=B8?= Date: Thu, 24 Nov 2022 01:28:50 +0100 Subject: [PATCH 2/2] Update apps/rebar/src/rebar_prv_shell.erl --- apps/rebar/src/rebar_prv_shell.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/rebar/src/rebar_prv_shell.erl b/apps/rebar/src/rebar_prv_shell.erl index 7ec1b88a7..add881bc8 100644 --- a/apps/rebar/src/rebar_prv_shell.erl +++ b/apps/rebar/src/rebar_prv_shell.erl @@ -98,7 +98,7 @@ init(State) -> {eval, undefined, "eval", string, "Erlang term(s) to execute after the apps have been " "started, but before the shell is presented to the " - "user"} + "user."} ]} ]) ),