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.

16 lines
295 B

open Fnm;
6 years ago
let run = isFishShell => {
if (isFishShell) {
Console.log(
Printf.sprintf("set PATH %s/bin $PATH", Directories.currentVersion),
);
} else {
Console.log(
Printf.sprintf("export PATH=%s/bin:$PATH", Directories.currentVersion),
);
}
6 years ago
Lwt.return();
};