From 43357b8052577a7401c6838de006499c902dd7df Mon Sep 17 00:00:00 2001 From: Sean Fisher Date: Wed, 31 Aug 2022 16:56:37 -0400 Subject: [PATCH] Fix installer path --- src/class-install-command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/class-install-command.php b/src/class-install-command.php index c5ba9ca..3762ac7 100644 --- a/src/class-install-command.php +++ b/src/class-install-command.php @@ -287,7 +287,7 @@ protected function install_mantle( string $dir, InputInterface $input, OutputInt "cd {$framework_dir} && git remote set-url origin git@github.com:alleyinteractive/mantle-framework.git", "cd {$framework_dir} && composer install", "git clone https://github.com/alleyinteractive/mantle.git {$mantle_dir}", - "cd {$framework_dir} && git remote set-url origin git@github.com:alleyinteractive/mantle.git", + "cd {$mantle_dir} && git remote set-url origin git@github.com:alleyinteractive/mantle.git", "cd {$mantle_dir} && composer config repositories.mantle-framework '{\"type\": \"path\", \"url\": \"../{$name}-framework\", \"options\": {\"symlink\": true}}' --file composer.json", // Update Mantle to accept any version of these dependencies. "cd {$mantle_dir} && composer require alleyinteractive/mantle-framework:\"*\" alleyinteractive/composer-wordpress-autoloader:\"*\" --no-update --no-scripts",