dotfiles/recipes/nextcloud

22 lines
409 B
Text
Raw Normal View History

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