Skip to content

Commit

Permalink
Fix bad merging - remove duplicated method
Browse files Browse the repository at this point in the history
  • Loading branch information
bocharsky-bw committed Feb 20, 2024
1 parent f92e9d8 commit f9f8acc
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/SassBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,6 @@ public function runBuild(bool $watch): Process
return $process;
}

private function createBinary(): SassBinary
{
return new SassBinary($this->projectRootDir.'/var', $this->binaryPath, $this->binaryVersion, $this->output);
}

/**
* @return array<string>
*/
Expand Down Expand Up @@ -180,7 +175,7 @@ public function setOutput(SymfonyStyle $output): void

private function createBinary(): SassBinary
{
return new SassBinary($this->projectRootDir.'/var', $this->binaryPath, $this->output);
return new SassBinary($this->projectRootDir.'/var', $this->binaryPath, $this->binaryVersion, $this->output);
}

/**
Expand Down

0 comments on commit f9f8acc

Please sign in to comment.