[*] Linux hack: drop arg[0] when the string contains ld-Aurora

This commit is contained in:
Reece Wilson 2024-06-29 14:32:20 +01:00
parent bd034aec31
commit 05737d61fe

View File

@ -63,6 +63,14 @@ namespace Aurora::CmdLine
args.push_back(last);
}
if (args.size())
{
if (AuStringContains(args[0], "ld-Aurora"))
{
args.erase(args.begin());
}
}
return args;
}
#endif