Closed OceanOak closed 9 months ago
Changelog:
CLI - Implement a self-updating mechanism for Darklang's executable
Notes / things that needs to be fixed:
On Windows, commands like uname -s, which determine the operating system, may not work. We might consider something like the following?
uname -s
let os = Stdlib.Process.runCommand "uname -s" if os.exitCode != 0L then // try the windows equivalent command
Changelog:
Notes / things that needs to be fixed:
On Windows, commands like
uname -s
, which determine the operating system, may not work. We might consider something like the following?