mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Fix grep portability (Reported-by: Andrew Thompson)
This commit is contained in:
parent
12b26fab32
commit
4e0ab4065f
2 changed files with 3 additions and 3 deletions
|
@ -23,14 +23,14 @@ cd $RUNNER_BASE_DIR
|
||||||
mkdir -p $RUNNER_LOG_DIR
|
mkdir -p $RUNNER_LOG_DIR
|
||||||
|
|
||||||
# Extract the target node name from node.args
|
# Extract the target node name from node.args
|
||||||
NAME_ARG=`egrep -e '^-s?name' $RUNNER_ETC_DIR/vm.args`
|
NAME_ARG=`egrep '^-s?name' $RUNNER_ETC_DIR/vm.args`
|
||||||
if [ -z "$NAME_ARG" ]; then
|
if [ -z "$NAME_ARG" ]; then
|
||||||
echo "vm.args needs to have either -name or -sname parameter."
|
echo "vm.args needs to have either -name or -sname parameter."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Extract the target cookie
|
# Extract the target cookie
|
||||||
COOKIE_ARG=`grep -e '^-setcookie' $RUNNER_ETC_DIR/vm.args`
|
COOKIE_ARG=`grep '^-setcookie' $RUNNER_ETC_DIR/vm.args`
|
||||||
if [ -z "$COOKIE_ARG" ]; then
|
if [ -z "$COOKIE_ARG" ]; then
|
||||||
echo "vm.args needs to have a -setcookie parameter."
|
echo "vm.args needs to have a -setcookie parameter."
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
@ -90,7 +90,7 @@ clear_log(RawLog) ->
|
||||||
%% log results
|
%% log results
|
||||||
check_log(RawLog) ->
|
check_log(RawLog) ->
|
||||||
{ok, Msg} =
|
{ok, Msg} =
|
||||||
rebar_utils:sh("grep -e 'TEST COMPLETE' -e '{error,make_failed}' "
|
rebar_utils:sh("egrep -e 'TEST COMPLETE' -e '{error,make_failed}' "
|
||||||
++ RawLog, [{use_stdout, false}]),
|
++ RawLog, [{use_stdout, false}]),
|
||||||
MakeFailed = string:str(Msg, "{error,make_failed}") =/= 0,
|
MakeFailed = string:str(Msg, "{error,make_failed}") =/= 0,
|
||||||
RunFailed = string:str(Msg, ", 0 failed") =:= 0,
|
RunFailed = string:str(Msg, ", 0 failed") =:= 0,
|
||||||
|
|
Loading…
Reference in a new issue