Skip to content

Commit

Permalink
Attempt to fix WP Plugin Repository
Browse files Browse the repository at this point in the history
  • Loading branch information
w00fz committed Oct 29, 2015
1 parent c35fad1 commit a0cc14e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,14 @@ after_deploy:
svn status | grep '^?' | awk '{print $2}' | xargs --no-run-if-empty -d '\n' svn add;
svn status | grep '^!' | awk '{print $2}' | xargs --no-run-if-empty -d '\n' svn delete --force;
echo "# Committing changes to Trunk";
svn commit $G5_WP_REPO --message "[automatic] Updated Gantry 5 to $TRAVIS_TAG";
svn commit $G5_WP_REPO $WPREPO/trunk --message "[automatic] Updated Gantry 5 to $TRAVIS_TAG";
echo "# Creating Tag";
cd $WPREPO;
svn copy trunk/ tags/$TRAVIS_TAG/;
echo "# Committing Tag";
cd $WPREPO/tags/$TRAVIS_TAG;
svn commit $G5_WP_REPO --message "[automatic] Created Gantry $TRAVIS_TAG Tag";
svn commit $G5_WP_REPO $WPREPO/tags/$TRAVIS_TAG --message "[automatic] Created Gantry $TRAVIS_TAG Tag";
fi
- if [ "$TRAVIS_BRANCH" == 'develop' ]; then
curl -L http://gantry.org/cibuilds >/dev/null 2>&1;
fi
fi

0 comments on commit a0cc14e

Please sign in to comment.