Skip to content

Commit

Permalink
fix: extra slash for test purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
theus77 committed Jul 5, 2024
1 parent 9f193f2 commit 9efe799
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function assets(string $hash, string $saveDir = 'bundles', bool $addEnvir
public function asset(string $path, array $assetConfig = []): string
{
if (empty($this->localFolder)) {
$filename = \sprintf('%s:/%s', $this->getVersionHash(), $path);
$filename = \sprintf('%s:%s', $this->getVersionHash(), $path);
} else {
$filename = $this->publicDir.DIRECTORY_SEPARATOR.$this->localFolder.DIRECTORY_SEPARATOR.$path;
}
Expand Down

0 comments on commit 9efe799

Please sign in to comment.