From 33ef0d4e58cfb6c0db7bf7e9164734918980c5e6 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Wed, 28 Feb 2018 22:34:26 -0500 Subject: [PATCH] [provisioning] Add graphviz --- recipes/graphviz | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 recipes/graphviz diff --git a/recipes/graphviz b/recipes/graphviz new file mode 100644 index 0000000..8ff7793 --- /dev/null +++ b/recipes/graphviz @@ -0,0 +1,13 @@ +#!/bin/bash +set -e + +case $_PLATFORM in + darwin) + _recipe brew + _brew graphviz + ;; + *) + _recipe _apt + _apt graphviz + ;; +esac