mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-25 03:00:05 +00:00
12 lines
171 B
Bash
12 lines
171 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
case $_PLATFORM in
|
|
darwin)
|
|
;;
|
|
*)
|
|
_recipe _apt
|
|
_ppa nextcloud-devs/client
|
|
_apt nextcloud-client
|
|
;;
|
|
esac
|