diff --git a/src/BinaryInstaller.php b/src/BinaryInstaller.php index 371f63f6e..ed3383244 100644 --- a/src/BinaryInstaller.php +++ b/src/BinaryInstaller.php @@ -196,9 +196,11 @@ protected function installBinary($binary, $version, $url, $sha, $hashalgo = 'sha $httpDownloader = Factory::createHttpDownloader($this->io, $this->config); $parts = explode('/', $url); $fileName = array_pop($parts); + $this->io->warning('💃 [penyaskito] $fileName is ' . $fileName); $cacheFolder = $this->cache->getRoot().$binary.\DIRECTORY_SEPARATOR.$version; $cacheDestination = $cacheFolder.\DIRECTORY_SEPARATOR.$fileName; $cacheExtractedBinary = $cacheFolder.\DIRECTORY_SEPARATOR.$binary; + $this->io->warning('💃 [penyaskito] $cacheDestination is ' . $cacheDestination); $binDestination = $bin.\DIRECTORY_SEPARATOR.$binary; // Check the cache. diff --git a/src/ScaffoldInstallerPlugin.php b/src/ScaffoldInstallerPlugin.php index b16bcaf85..0b1f86235 100644 --- a/src/ScaffoldInstallerPlugin.php +++ b/src/ScaffoldInstallerPlugin.php @@ -207,9 +207,11 @@ private function installDdevCommand(): void { if (file_exists('./.ddev/config.yaml')) { $vendor = $this->config->get('vendor-dir'); + $this->io->warning('💃 [penyaskito] $vendor is ' . $vendor); $ddevCommandPath = $vendor . '/lullabot/drainpipe/scaffold/ddev/task-command.sh'; $fs = new Filesystem(); $fs->ensureDirectoryExists('./.ddev/commands/web'); + $this->io->warning('💃 [penyaskito] $ddevCommandPath is ' . $ddevCommandPath); $fs->copy($ddevCommandPath, './.ddev/commands/web/task'); } }