dotfiles/recipes/nextcloud

22 lines
409 B
Text
Raw Normal View History

2018-02-27 05:15:39 +00:00
#!/bin/bash
2018-04-12 18:07:33 +00:00
# Description: File syncing
2018-02-27 05:15:39 +00:00
set -e
case $_PLATFORM in
darwin)
_recipe brew
_recipe _path
_brew_cask nextcloud
_path /Applications/nextcloud.app/Contents/MacOS
2018-02-27 05:15:39 +00:00
;;
2021-02-05 00:05:51 +00:00
arch)
_recipe _arch
_pacman nextcloud-client
;;
debian)
2018-02-27 05:15:39 +00:00
_recipe _apt
_ppa nextcloud-devs/client
_apt nextcloud-client
;;
esac