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

16 lines
306 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-07-15 10:10:06 +00:00
source "$(status dirname)/../../Scripts/software.fish"
function configureSW -S -V dir
pwsh "$dir/Manage.ps1" Configure
end
function userConfig -S -V dir -a name
configureGit "$name"
end
2024-07-19 23:51:14 +00:00
runInstaller $argv
2024-07-15 10:10:06 +00:00
end