./somebin ... works everywhere but windows. Omitting the ./ only works on windows. Need to figure out a good way so scripts don't need awful garbage like:
run(`.`~dirSeparator~`mytool --args`);
or
run(buildPath(`.`, `mytool`)~` --args`);
or
version(Windows)
run(`mytool --args`);
else
run(`./mytool --args`);