16 lines
308 B
Fish
16 lines
308 B
Fish
|
#!/bin/env fish
|
||
|
begin
|
||
|
set -l dir (status dirname)
|
||
|
source "$dir/../../Scripts/software.fish"
|
||
|
|
||
|
function installSW
|
||
|
yayinst powershell-bin
|
||
|
end
|
||
|
|
||
|
function configureSW -V dir
|
||
|
fish "$dir/../../../Common/Software/PowerShell/main.fish" configure
|
||
|
end
|
||
|
|
||
|
runInstaller $argv
|
||
|
end
|