re-order lines in .travis.yml template to make them more readable

This commit is contained in:
scribu 2013-02-25 18:52:28 +02:00
parent 9007792481
commit 0af8252004

View file

@ -6,9 +6,9 @@ php:

env:
- WP_VERSION=master WP_MULTISITE=0
- WP_VERSION=3.4.2 WP_MULTISITE=0
- WP_VERSION=master WP_MULTISITE=1
- WP_VERSION=3.4.2 WP_MULTISITE=1
- WP_VERSION=3.5.1 WP_MULTISITE=0
- WP_VERSION=3.5.1 WP_MULTISITE=1

before_install:
- git submodule update --init --recursive
@ -16,8 +16,8 @@ before_install:
before_script:
# set up WP install
- WP_CORE_DIR=/tmp/wordpress/
- wget -nv -O /tmp/wordpress.tar.gz https://github.com/WordPress/WordPress/tarball/$WP_VERSION
- mkdir -p $WP_CORE_DIR
- wget -nv -O /tmp/wordpress.tar.gz https://github.com/WordPress/WordPress/tarball/$WP_VERSION
- tar --strip-components=1 -zxmf /tmp/wordpress.tar.gz -C $WP_CORE_DIR
- plugin_slug=$(basename $(pwd))
- plugin_dir=$WP_CORE_DIR/wp-content/plugins/$plugin_slug