PortValhalla/scripts/Common/Scripts/software.fish

17 lines
295 B
Fish
Raw Normal View History

#!/bin/env fish
begin
function installSW
end
function configureSW
end
function runInstaller -a action
if [ -z "$action" ] || [ "$action" = "install" ]
installSW
2024-07-14 08:10:04 +00:00
else if [ "$action" = "configure" ]
configureSW
end
end
end