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.
13 lines
403 B
13 lines
403 B
let sfwRoot = |
|
Opt.( |
|
Sys.getenv_opt("FNM_DIR") |
|
or { |
|
let home = |
|
Sys.getenv_opt("HOME") |
|
|> Opt.orThrow("There isn't $HOME environment variable set."); |
|
Filename.concat(home, ".fnm"); |
|
} |
|
); |
|
let nodeVersions = Filename.concat(sfwRoot, "node-versions"); |
|
let currentVersion = Filename.concat(sfwRoot, "current"); |
|
let downloads = Filename.concat(sfwRoot, "downloads");
|
|
|