13 lines
255 B
Fish
13 lines
255 B
Fish
|
#!/bin/env fish
|
||
|
begin
|
||
|
set -l dir (status dirname)
|
||
|
source "$dir/../../Scripts/software.fish"
|
||
|
|
||
|
function installSW
|
||
|
yayinst pyenv
|
||
|
source "$dir/../../../Common/Software/pyenv/main.fish" configure
|
||
|
end
|
||
|
|
||
|
runInstaller $argv
|
||
|
end
|