Skip to content

Commit

Permalink
source -> .
Browse files Browse the repository at this point in the history
Signed-off-by: Louise Poubel <[email protected]>
  • Loading branch information
chapulina committed Jul 20, 2020
1 parent a4a51fe commit d8cb883
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ cd build

echo "SCRIPT_BEFORE_CMAKE"
if [ ! -z "$SCRIPT_BEFORE_CMAKE" ] ; then
source $SCRIPT_BEFORE_CMAKE
. $SCRIPT_BEFORE_CMAKE
fi

if [ ! -z "$CODECOV_TOKEN" ] ; then
Expand All @@ -67,22 +67,22 @@ fi

echo "SCRIPT_BETWEEN_CMAKE_MAKE"
if [ ! -z "$SCRIPT_BETWEEN_CMAKE_MAKE" ] ; then
source $SCRIPT_BETWEEN_CMAKE_MAKE
. $SCRIPT_BETWEEN_CMAKE_MAKE
fi

make

echo "SCRIPT_AFTER_MAKE"
if [ ! -z "$SCRIPT_AFTER_MAKE" ] ; then
source $SCRIPT_AFTER_MAKE
. $SCRIPT_AFTER_MAKE
fi

export CTEST_OUTPUT_ON_FAILURE=1
make test

echo "SCRIPT_AFTER_MAKE_TEST"
if [ ! -z "$SCRIPT_AFTER_MAKE_TEST" ] ; then
source $SCRIPT_AFTER_MAKE_TEST
. $SCRIPT_AFTER_MAKE_TEST
fi

if [ ! -z "$CODECOV_TOKEN" ] ; then
Expand Down

0 comments on commit d8cb883

Please sign in to comment.