PortValhalla/scripts/Arch/Software/nodejs-n/main.fish

16 lines
327 B
Fish
Raw Permalink Normal View History

#!/bin/env fish
begin
set -l dir (status dirname)
2024-11-01 12:12:16 +00:00
source "$dir/../../lib/software.fish"
2024-09-13 12:47:07 +00:00
function installSW
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
end
runInstaller $argv
end