Hello! Here it is, as I mentioned yesterday in https://github.com/marler8997/zigup/issues/91
I wouldn't say this is fully done, though. Currently it doesn't support windows, since I'm using std.os.getenv, but on that note I'd like to ask: should I conditionally use std.os.getenv and std.process.getEnvVarOwned conditionally or just the latter? Using the owned variant would have a performance penalty on non-windows systems but I don't think it's too much to worry about, and it might make the code simpler.
Hello! Here it is, as I mentioned yesterday in https://github.com/marler8997/zigup/issues/91 I wouldn't say this is fully done, though. Currently it doesn't support windows, since I'm using
std.os.getenv
, but on that note I'd like to ask: should I conditionally usestd.os.getenv
andstd.process.getEnvVarOwned
conditionally or just the latter? Using the owned variant would have a performance penalty on non-windows systems but I don't think it's too much to worry about, and it might make the code simpler.