12 lines
275 B
Fish
Executable file
12 lines
275 B
Fish
Executable file
#!/bin/env fish
|
|
begin
|
|
set -l dir (status dirname)
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
function userConfig -V dir -a user
|
|
pwsh -CommandWithArgs '& $args[0] ConfigureUser @{ name=$args[1]; }' "$dir/Main.ps1" $user
|
|
end
|
|
|
|
runInstaller $argv
|
|
end
|