join() was broken

forgot -m for pip
This commit is contained in:
isanae
2020-05-26 13:44:20 -04:00
parent 0dc8d2c7ae
commit e1c4757378
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -248,7 +248,7 @@ void python::install_pip()
// ssl errors while downloading through python without certifi
run_tool(process_runner(process()
.binary(python_exe())
.arg("pip")
.arg("-m pip")
.arg("install")
.arg("certifi")));
}
+1 -1
View File
@@ -323,7 +323,7 @@ T join(const std::vector<T>& v, const Sep& sep)
for (auto&& e : v)
{
if (first)
if (!first)
s += sep;
s += e;