Skip to content

Commit 840e015

Browse files
committed
Make LMPA work in any florder/drive
1 parent f71bb78 commit 840e015

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

controllers/PHPVersionsController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ private function add() {
264264
$this->climate->info("Add batch alias");
265265
$_aliases = '..\..\..\bin\php\_aliases';
266266
file_put_contents($_aliases.'\php'.implode('', array_slice(explode('.', $matches[1]), 0, 2)).'.bat', "@echo off\n".realpath($target_dir)."\php.exe %*");
267-
file_put_contents($_aliases."\composer".implode('', array_slice(explode('.', $matches[1]), 0, 2)).'.bat', str_replace(' %*', ' C:\laragon\bin\php\_aliases\composer.phar %*', "@echo off\n".realpath($target_dir)."\php.exe %*"));
267+
file_put_contents($_aliases."\composer".implode('', array_slice(explode('.', $matches[1]), 0, 2)).'.bat', str_replace(' %*', ' '.realpath($_aliases).'composer.phar %*', "@echo off\n".realpath($target_dir)."\php.exe %*"));
268268

269269
$this->climate->clear();
270270

manager.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Get-Childitem -Path "C:\laragon\bin\php\php-*\php.exe" | ForEach-Object {
2-
$arg = '/c ' + $_.FullName + ' C:\laragon\etc\apps\LMPA\index.phar & pause';
1+
Get-Childitem -Path "..\..\..\bin\php\php-*\php.exe" | ForEach-Object {
2+
$arg = '/c ' + $_.FullName + ' ' + $(Resolve-Path -Path ".") + '\index.phar & pause';
33
Start-Process -FilePath cmd -ArgumentList $arg; break;
44
}

0 commit comments

Comments
 (0)