trim libPath

This commit is contained in:
2021-10-19 13:53:39 -04:00
parent f4bbd3d509
commit 745b9b42c4

View File

@@ -564,6 +564,6 @@ class Helpers {
// Get the path to a haxelib the user has installed
public static function libPath(haxelibName:String) {
return Prelude.assertProcess("haxelib", ["libpath", haxelibName]);
return Prelude.assertProcess("haxelib", ["libpath", haxelibName]).trim();
}
}