You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
403 B

6 years ago
let sfwRoot =
Opt.(
Sys.getenv_opt("FNM_DIR")
6 years ago
or {
let home =
Sys.getenv_opt("HOME")
|> Opt.orThrow("There isn't $HOME environment variable set.");
Filename.concat(home, ".fnm");
6 years ago
}
);
let nodeVersions = Filename.concat(sfwRoot, "node-versions");
let currentVersion = Filename.concat(sfwRoot, "current");
let downloads = Filename.concat(sfwRoot, "downloads");