prepend python to path when building usvfs, udis requires it

install certifi, prebuilt python fails with ssl errors when downloading
This commit is contained in:
isanae
2020-05-26 13:36:36 -04:00
parent ff64693a18
commit 0dc8d2c7ae
8 changed files with 110 additions and 29 deletions
-15
View File
@@ -352,21 +352,6 @@ std::string replace_all(
return s;
}
std::string join(const std::vector<std::string>& v, const std::string& sep)
{
std::string s;
for (auto&& e : v)
{
if (!s.empty())
s += sep;
s += e;
}
return s;
}
std::vector<std::string> split(const std::string& s, const std::string& seps)
{
std::vector<std::string> v;