Skip to content

Commit

Permalink
Run everyting in case of CRON
Browse files Browse the repository at this point in the history
  • Loading branch information
mauriziovitale committed Aug 26, 2022
1 parent 38e9cc9 commit 4a39161
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/travis/affected-contains.sh
Expand Up @@ -4,6 +4,10 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
verifyLib=$1;
cd $DIR/../../

if [ "${TRAVIS_EVENT_TYPE}" == "cron" ]; then
echo "Affected not check in case of cron"
exit 0
fi
AFFECTED_LIBS="$(nx print-affected --type=lib --select=projects --base=$BASE_HASH --head=$HEAD_HASH --plain || exit 1)"
echo "Verify if affected build contains $1"

Expand Down

0 comments on commit 4a39161

Please sign in to comment.