From d89ed88cf23e486eb33ee385b1475155f737f19b Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Sat, 8 Jan 2022 11:33:49 -0700 Subject: [PATCH] Add games package to installer --- install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.sh b/install.sh index 9a6703f..8adde09 100755 --- a/install.sh +++ b/install.sh @@ -17,6 +17,7 @@ USAGE: $0 |all configs only install shell config files coffeescript install coffeescript language tools + games install command-line game runners go install go language tools heroku install the Heroku CLI node install NodeJS language tools @@ -139,6 +140,10 @@ function __install_docker() { __install_with brew derailed/k9s/k9s k9s } +function __install_games() { + __install_with brew frobtads +} + function __install_gcc() { __install_with brew gcc }