[provisioning] Add graphviz

This commit is contained in:
Correl Roush 2018-02-28 22:34:26 -05:00
parent 325e9d112b
commit 33ef0d4e58

13
recipes/graphviz Normal file
View file

@ -0,0 +1,13 @@
#!/bin/bash
set -e
case $_PLATFORM in
darwin)
_recipe brew
_brew graphviz
;;
*)
_recipe _apt
_apt graphviz
;;
esac