Skip to content

Commit

Permalink
Merge pull request #575 from fabricio-aguiar/required
Browse files Browse the repository at this point in the history
Fix Required PR failure
  • Loading branch information
daviddavis committed Mar 10, 2020
2 parents 449aae4 + e3e9775 commit a642907
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis/pre_before_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ cd ..
git clone https://github.com/pulp/pulp_file.git --branch "$PULP_FILE_BRANCH"
if [ -n "$PULP_FILE_PR_NUMBER" ]; then
cd pulp_file
git fetch origin +refs/pull/$PULP_FILE_PR_NUMBER/merge
git checkout FETCH_HEAD
git fetch --depth=1 origin pull/$PULP_FILE_PR_NUMBER/head:$PULP_FILE_PR_NUMBER
git checkout $PULP_FILE_PR_NUMBER
cd ..
fi

git clone https://github.com/pulp/pulp-certguard.git
git clone --depth=1 https://github.com/pulp/pulp-certguard.git
if [ -n "$PULP_CERTGUARD_PR_NUMBER" ]; then
cd pulp-certguard
git fetch origin +refs/pull/$PULP_CERTGUARD_PR_NUMBER/merge
git checkout FETCH_HEAD
git fetch --depth=1 origin pull/$PULP_CERTGUARD_PR_NUMBER/head:$PULP_CERTGUARD_PR_NUMBER
git checkout $PULP_CERTGUARD_PR_NUMBER
cd ..
fi

Expand Down

0 comments on commit a642907

Please sign in to comment.