22 lines
422 B
Fish
Executable file
22 lines
422 B
Fish
Executable file
#!/bin/env fish
|
|
begin
|
|
set -l dir (status dirname)
|
|
set -l base "$dir/../../../Common/Software/rclone/main.fish"
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
function installSW
|
|
yayinst \
|
|
rclone
|
|
end
|
|
|
|
function configureSW -V base
|
|
fish "$base" configure
|
|
end
|
|
|
|
function userConfig -V base -a name
|
|
fish "$base" userConfig $argv
|
|
end
|
|
|
|
runInstaller $argv
|
|
end
|