2024-07-17 12:18:27 +00:00
|
|
|
#!/bin/env fish
|
|
|
|
begin
|
|
|
|
set -l dir (status dirname)
|
|
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
|
2024-09-13 12:47:07 +00:00
|
|
|
function installSW
|
2024-07-17 12:18:27 +00:00
|
|
|
yayinst nodejs-n
|
2024-09-13 12:47:07 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function configureSW -V dir
|
2024-10-13 13:35:24 +00:00
|
|
|
sudo --preserve-env --set-home fish "$dir/../../../Common/Software/nodejs-n/main.fish" configure
|
2024-07-17 12:18:27 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
runInstaller $argv
|
|
|
|
end
|