Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rdmd.d
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ private int run(string[] args, string output = null, bool replace = false)
{ /* Windows doesn't have exec, fall back to spawnProcess+wait */ }
else
{
import std.c.process;
import std.process : execv;
auto argv = args.map!toStringz.chain(null.only).array;
return execv(argv[0], argv.ptr);
}
Expand Down