19 lines
422 B
Fish
Executable file
19 lines
422 B
Fish
Executable file
#!/bin/env fish
|
|
begin
|
|
set -l dir (status dirname)
|
|
source "$dir/../../Scripts/software.fish"
|
|
inherit "$dir/../../../Common/Software/git/main.fish"
|
|
|
|
function installSW
|
|
yayinst \
|
|
git \
|
|
git-lfs \
|
|
gitflow-avh \
|
|
gitflow-bashcompletion-avh \
|
|
gitflow-fishcompletion-avh \
|
|
gitflow-zshcompletion-avh
|
|
end
|
|
|
|
runInstaller $argv
|
|
end
|