Remove obsolete code from wrapper.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2019-09-22 20:58:59 +02:00
parent 8db8f97bde
commit d746b8c266
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 4 additions and 26 deletions

View File

@ -78,40 +78,18 @@ int launch(const string &args)
int main()
{
string args = read_input();
// size_t pos = args.find("TEMPFILE");
// string tmpfile;
// if (pos != string::npos)
// {
// try
// {
// tmpfile = fs::temp_directory_path() / "remwharead.html";
// args.replace(pos, 8, tmpfile);
// }
// catch (const fs::filesystem_error &e)
// {
// send_message("Could not create temporary file.");
// return 3;
// }
// }
const string args = read_input();
int ret = launch(args);
if (ret == 0)
{
// if (!tmpfile.empty())
// {
// send_message("FILE:" + tmpfile);
// }
// else
// {
send_message("Command successful.");
// }
send_message("Command successful.");
}
else
{
send_message("Command failed with status: " + std::to_string(ret) + '.');
send_message("Command failed with status: "
+ std::to_string(ret) + '.');
}
return ret;