Skip to content

Commit

Permalink
Merge pull request #116 from hydephp/release/v0.7.37
Browse files Browse the repository at this point in the history
HydeCLI v0.7.37
  • Loading branch information
caendesilva authored Apr 19, 2024
2 parents 967b7da + 456e30d commit 7b953b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class Application extends \Hyde\Foundation\Application
{
final public const APP_VERSION = '0.7.36';
final public const APP_VERSION = '0.7.37';

public function getCachedPackagesPath(): string
{
Expand Down
4 changes: 2 additions & 2 deletions app/Commands/SelfUpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -391,8 +391,8 @@ protected function runComposerProcess(): array

if (PHP_OS_FAMILY === 'Windows') {
// Attempt to run the command with the elevated privileges
$command = sprintf("Start-Process -Verb RunAs powershell -ArgumentList '-Command %s'", escapeshellarg($command));
$command = 'powershell -Command "'.$command.'"';
$powerShell = sprintf("Start-Process -Verb RunAs powershell -ArgumentList '-Command %s'", escapeshellarg($command));
$command = 'powershell -Command "'.$powerShell.'"';
}

$result = $process->run($command, function (string $type, string $buffer) use (&$output): void {
Expand Down
Binary file modified builds/hyde
Binary file not shown.

0 comments on commit 7b953b6

Please sign in to comment.