17 lines
270 B
Fish
Executable file
17 lines
270 B
Fish
Executable file
#!/bin/env fish
|
|
begin
|
|
set -l dir (status dirname)
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
function installSW
|
|
npm install --global n
|
|
configureSW
|
|
end
|
|
|
|
function configureSW
|
|
n install latest
|
|
end
|
|
|
|
runInstaller $argv
|
|
end
|