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
402 B
13 lines
402 B
![]()
6 years ago
|
let sfwRoot =
|
||
|
Opt.(
|
||
|
Sys.getenv_opt("NSW_DIR")
|
||
|
or {
|
||
|
let home =
|
||
|
Sys.getenv_opt("HOME")
|
||
|
|> Opt.orThrow("There isn't $HOME environment variable set.");
|
||
|
Filename.concat(home, ".nsw");
|
||
|
}
|
||
|
);
|
||
|
let nodeVersions = Filename.concat(sfwRoot, "node-versions");
|
||
|
let currentVersion = Filename.concat(sfwRoot, "current");
|
||
|
let downloads = Filename.concat(sfwRoot, "downloads");
|