Skip to content

Commit

Permalink
Fix full command
Browse files Browse the repository at this point in the history
  • Loading branch information
huangdijia committed Oct 5, 2022
1 parent e2bbe33 commit 9e72866
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/Command/AbstractPhpCallProxyCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ public function handle()
{
$bin = $this->buildBinCommand();
$command = Str::replaceFirst($this->proxyCommand . ' ', '', (string) $this->input);
$fullCommand = sprintf('%s %s', $bin, $command);
// $fullCommand = sprintf('%s %s', $bin, $command);
$fullCommand = $bin;
$this->liveCommand($fullCommand);
}

Expand Down

0 comments on commit 9e72866

Please sign in to comment.