Skip to content

Commit 8040e4a

Browse files
bugfix: Download url malformed in Windows
1 parent 2938a00 commit 8040e4a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Utils/LibsChecker.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ private static function downloadLibrary(string $name): void
3030
$baseUrl = Libraries::baseUrl(Transformers::$libsDir);
3131
$ext = Libraries::ext();
3232

33-
$downloadUrl = Libraries::joinPaths($baseUrl, "$name.$ext");
33+
$downloadUrl = "$baseUrl/$name.$ext";
3434
$downloadPath = tempnam(sys_get_temp_dir(), 'transformers-php') . ".$ext";
3535

3636
echo " - Downloading " . self::colorize($name) . "\n";

0 commit comments

Comments
 (0)