From 0d92987935bc7a462f44c88cc012b100cf34ff91 Mon Sep 17 00:00:00 2001 From: Max Howell Date: Sun, 13 Mar 2011 12:53:07 +0000 Subject: [PATCH] brew environment alias to --env; like `gem` --- bin/brew | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/brew b/bin/brew index fd72dce09f..2529693d60 100755 --- a/bin/brew +++ b/bin/brew @@ -61,7 +61,9 @@ begin 'configure' => :diy, 'abv' => :info, 'dr' => :doctor, - '--repo' => '--repository'} + '--repo' => '--repository', + 'environment' => '--env' # same as gem + } cmd = ARGV.shift cmd = aliases[cmd] if aliases[cmd]