PortValhalla/scripts/Common/Software/git/main.fish

17 lines
339 B
Fish
Raw Normal View History

2024-07-15 10:10:06 +00:00
#!/bin/env fish
begin
2024-07-15 18:24:47 +00:00
set -l dir (status dirname)
2024-10-12 16:13:41 +00:00
set -l base "$dir/Main.ps1"
2024-07-15 10:10:06 +00:00
source "$(status dirname)/../../Scripts/software.fish"
function configureSW -S -V base
pwsh "$base" Configure
end
function userConfig -S -V base -a name
runPSUserConfig "$base" $name
end
2024-07-19 23:51:14 +00:00
runInstaller $argv
2024-07-15 10:10:06 +00:00
end