dotfiles/recipes/nextcloud

17 lines
300 B
Text
Raw Normal View History

2018-02-27 05:15:39 +00:00
#!/bin/bash
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
;;
*)
_recipe _apt
_ppa nextcloud-devs/client
_apt nextcloud-client
;;
esac