mirror of
https://github.com/ModOrganizer2/mob.git
synced 2026-07-27 14:07:05 -07:00
join() was broken
forgot -m for pip
This commit is contained in:
@@ -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
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user