1
0
Fork 0
mirror of https://github.com/correl/dotfiles.git synced 2025-01-11 03:00:09 +00:00
dotfiles/recipes/graphviz

14 lines
216 B
Bash

#!/bin/bash
# Description: Graph visualization software
set -e
case $_PLATFORM in
darwin)
_recipe brew
_brew graphviz
;;
*)
_recipe _apt
_apt graphviz
;;
esac