summaryrefslogtreecommitdiffstatshomepage
path: root/tools
diff options
context:
space:
mode:
authorWeston Ruter <westonruter@git.wordpress.org>2022-09-28 21:54:46 +0000
committerWeston Ruter <westonruter@git.wordpress.org>2022-09-28 21:54:46 +0000
commit30c03e4e1e19e674046243849a53e6917f468ab5 (patch)
treeb1df74193af8f867b46284b04c82f7a2377cb04a /tools
parentd6bae0ceda812e699e5a21ba911b0892840016db (diff)
downloadwordpress-30c03e4e1e19e674046243849a53e6917f468ab5.tar.gz
wordpress-30c03e4e1e19e674046243849a53e6917f468ab5.zip
Build/Test Tools: Remove extraneous `--` from `docker-compose up` command.
This end of command options mark can be erreonously interpreted as an (invalid) container name. Props westonruter, saggre Fixes #56550 git-svn-id: https://develop.svn.wordpress.org/trunk@54350 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'tools')
-rw-r--r--tools/local-env/scripts/start.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/local-env/scripts/start.js b/tools/local-env/scripts/start.js
index 83250ab9a4..35edf7f96f 100644
--- a/tools/local-env/scripts/start.js
+++ b/tools/local-env/scripts/start.js
@@ -8,7 +8,7 @@ dotenvExpand.expand( dotenv.config() );
const containers = ( process.env.LOCAL_PHP_MEMCACHED === 'true' )
? 'wordpress-develop memcached'
: 'wordpress-develop';
-execSync( `docker-compose up -d -- ${containers}`, { stdio: 'inherit' } );
+execSync( `docker-compose up -d ${containers}`, { stdio: 'inherit' } );
// If Docker Toolbox is being used, we need to manually forward LOCAL_PORT to the Docker VM.
if ( process.env.DOCKER_TOOLBOX_INSTALL_PATH ) {