This commit is contained in:
Birunthan Mohanathas 2012-06-02 12:55:21 +03:00
parent 2336b08b88
commit 8b5e4c3ace

View File

@ -76,7 +76,10 @@ void RunCommand(std::wstring command)
}
}
RunFile(command.c_str(), args.c_str());
if (!command.empty())
{
RunFile(command.c_str(), args.c_str());
}
}
void RunFile(const WCHAR* file, const WCHAR* args, bool asAdmin)