Normalize software names

This commit is contained in:
Manuel Thalmann 2024-10-13 15:35:24 +02:00
commit 95d079bcaf
70 changed files with 59 additions and 59 deletions
scripts/Common/Software/nodejs-n

View file

@ -0,0 +1,15 @@
#!/bin/env fish
begin
set -l dir (status dirname)
source "$dir/../../Scripts/software.fish"
function installSW
npm install --global n
end
function configureSW
n install latest
end
runInstaller $argv
end