Skip to content

Commit 4814acb

Browse files
authored
Include --ignore-externals when running svn co (#243)
Include `--ignore-externals` when running svn co
2 parents 7b9e579 + 0bcaf2c commit 4814acb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/install-wp-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ install_test_suite() {
107107
if [ ! -d $WP_TESTS_DIR ]; then
108108
# set up testing suite
109109
mkdir -p $WP_TESTS_DIR
110-
svn co --quiet https://develop.svn.wordpress.org/${WP_TESTS_TAG}/tests/phpunit/includes/ $WP_TESTS_DIR/includes
111-
svn co --quiet https://develop.svn.wordpress.org/${WP_TESTS_TAG}/tests/phpunit/data/ $WP_TESTS_DIR/data
110+
svn co --quiet --ignore-externals https://develop.svn.wordpress.org/${WP_TESTS_TAG}/tests/phpunit/includes/ $WP_TESTS_DIR/includes
111+
svn co --quiet --ignore-externals https://develop.svn.wordpress.org/${WP_TESTS_TAG}/tests/phpunit/data/ $WP_TESTS_DIR/data
112112
fi
113113

114114
if [ ! -f wp-tests-config.php ]; then

0 commit comments

Comments
 (0)