Add scripts for maintaining software installation

This commit is contained in:
Manuel Thalmann 2024-07-13 18:36:24 +02:00
parent 1d740e2372
commit 9885850fce
2 changed files with 29 additions and 0 deletions
scripts/Common/Scripts

View file

@ -0,0 +1,16 @@
#!/bin/env fish
begin
function installSW
end
function configureSW
end
function runInstaller -a action
if [ -z "$action" ] || [ "$action" = "install" ]
installSW
else [ "$action" = "configure" ]
configureSW
end
end
end