mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-22 19:18:35 +00:00
14 lines
172 B
Text
14 lines
172 B
Text
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
case $_PLATFORM in
|
||
|
darwin)
|
||
|
_recipe brew
|
||
|
_brew graphviz
|
||
|
;;
|
||
|
*)
|
||
|
_recipe _apt
|
||
|
_apt graphviz
|
||
|
;;
|
||
|
esac
|