Skip to content

Commit

Permalink
chore: fix pull request build (#1110)
Browse files Browse the repository at this point in the history
  • Loading branch information
thatfiredev authored Apr 24, 2020
1 parent 8c15472 commit 8f15edb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_pull_request.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ git fetch origin
# Get all the modules that were changed
while read line; do
module_name=${line%%/*}
if [[ ${MODULES} != *"${module_name}"* ]]; then
if [[ ${MODULES} != *"${module_name}" ]]; then
MODULES="${MODULES} ${module_name}"
fi
done < <(git diff --name-only origin/$GITHUB_BASE_REF)
Expand Down

0 comments on commit 8f15edb

Please sign in to comment.