mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-15 03:00:11 +00:00
17 lines
328 B
Bash
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
|