aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/commands.rb
diff options
context:
space:
mode:
authorMike McQuaid2016-09-05 21:32:58 +0100
committerMike McQuaid2016-09-08 20:46:37 +0100
commit4f6bae46f9c0f7b713cdbb999318460135f423de (patch)
tree124cba75648bc3e497dea9683acaf4e20b9b9dd1 /Library/Homebrew/cmd/commands.rb
parent691d57f59477a512df1a63a115be52bd09560d34 (diff)
downloadbrew-4f6bae46f9c0f7b713cdbb999318460135f423de.tar.bz2
cmd/*: don't restrict dev-cmd to Homebrew developers.
Diffstat (limited to 'Library/Homebrew/cmd/commands.rb')
-rw-r--r--Library/Homebrew/cmd/commands.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/commands.rb b/Library/Homebrew/cmd/commands.rb
index 52705c58a..bb1e6fe4d 100644
--- a/Library/Homebrew/cmd/commands.rb
+++ b/Library/Homebrew/cmd/commands.rb
@@ -8,7 +8,7 @@ module Homebrew
def commands
if ARGV.include? "--quiet"
cmds = internal_commands + external_commands
- cmds += internal_development_commands if ARGV.homebrew_developer?
+ cmds += internal_development_commands
cmds += HOMEBREW_INTERNAL_COMMAND_ALIASES.keys if ARGV.include? "--include-aliases"
puts_columns cmds.sort
else