1
0
Fork 0
mirror of https://github.com/correl/dotfiles.git synced 2024-12-19 19:14:14 +00:00
dotfiles/recipes/nextcloud

17 lines
328 B
Bash

#!/bin/bash
# Description: File syncing
set -e
case $_PLATFORM in
darwin)
_recipe brew
_recipe _path
_brew_cask nextcloud
_path /Applications/nextcloud.app/Contents/MacOS
;;
*)
_recipe _apt
_ppa nextcloud-devs/client
_apt nextcloud-client
;;
esac