mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-22 03:00:05 +00:00
14 lines
216 B
Bash
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
|