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
|
|
|
|
2024-10-11 23:54:31 +00:00
|
|
|
function configureSW -S -V base
|
|
|
|
pwsh "$base" Configure
|
2024-07-20 02:06:41 +00:00
|
|
|
end
|
|
|
|
|
2024-11-02 17:14:54 +00:00
|
|
|
function userConfig -S -V base
|
|
|
|
argparse -i "user=" -- $argv
|
|
|
|
runPSUserConfig "$base" $_flag_user
|
2024-07-20 02:06:41 +00:00
|
|
|
end
|
|
|
|
|
2024-07-19 23:51:14 +00:00
|
|
|
runInstaller $argv
|
2024-07-15 10:10:06 +00:00
|
|
|
end
|