summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJonathan Desrosiers <desrosj@git.wordpress.org>2025-01-15 14:09:29 +0000
committerJonathan Desrosiers <desrosj@git.wordpress.org>2025-01-15 14:09:29 +0000
commit0672bd56bae7892aa6b6786d8b03ea1c063c036c (patch)
tree729638fb4b497f0d2a8330a2d1a7e2fea2488876
parentf5bdacce09b537b645eb04e3af6b1b3ccc5fc950 (diff)
downloadwordpress-0672bd56bae7892aa6b6786d8b03ea1c063c036c.tar.gz
wordpress-0672bd56bae7892aa6b6786d8b03ea1c063c036c.zip
Build/Test Tools: Fix bad merge in [59614].
Unprops desrosj. See #52909. See #62280. git-svn-id: https://develop.svn.wordpress.org/branches/4.1@59616 602fd350-edb4-49c9-b593-d223f7449a82
-rw-r--r--tools/local-env/scripts/install.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/local-env/scripts/install.js b/tools/local-env/scripts/install.js
index d85664f052..96c4143bbe 100644
--- a/tools/local-env/scripts/install.js
+++ b/tools/local-env/scripts/install.js
@@ -54,6 +54,6 @@ function wp_cli( cmd ) {
function install_wp_importer() {
const testPluginDirectory = 'tests/phpunit/data/plugins/wordpress-importer';
- execSync( `docker-compose exec -T php rm -rf ${testPluginDirectory}`, { stdio: 'inherit' } );
- execSync( `docker-compose exec -T php git clone https://github.com/WordPress/wordpress-importer.git ${testPluginDirectory} --depth=1`, { stdio: 'inherit' } );
+ execSync( `docker compose exec -T php rm -rf ${testPluginDirectory}`, { stdio: 'inherit' } );
+ execSync( `docker compose exec -T php git clone https://github.com/WordPress/wordpress-importer.git ${testPluginDirectory} --depth=1`, { stdio: 'inherit' } );
}