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

18 lines
373 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-11-01 12:12:16 +00:00
source "$(status dirname)/../../../lib/software.fish"
2024-07-15 10:10:06 +00:00
function configureSW -S -V base
pwsh "$base" Configure
end
function userConfig -S -V base
argparse -i "user=" -- $argv
runPSUserConfig "$base" $_flag_user
end
2024-07-19 23:51:14 +00:00
runInstaller $argv
2024-07-15 10:10:06 +00:00
end