aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hello.rb
diff options
context:
space:
mode:
authorShaun Jackman2015-02-05 11:09:06 -0800
committerMike McQuaid2015-02-06 08:14:13 +0000
commit501dd3d9021cb9ed2a78dfd87afd8766d071fa31 (patch)
treef76a8bcefe08ef05e37063d091954c8c26f58b2b /Library/Formula/hello.rb
parenta1a2364d054ff07818cb29c1e4437c0b97f11acb (diff)
downloadhomebrew-501dd3d9021cb9ed2a78dfd87afd8766d071fa31.tar.bz2
hello: remove --next-generation from test
Fix the error: hello: unrecognized option '--next-generation' Closes #36563. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/hello.rb')
-rw-r--r--Library/Formula/hello.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/hello.rb b/Library/Formula/hello.rb
index 03e863a39..96c7f3d05 100644
--- a/Library/Formula/hello.rb
+++ b/Library/Formula/hello.rb
@@ -13,6 +13,6 @@ class Hello < Formula
system "make", "install"
end
test do
- system "#{bin}/hello", "--next-generation", "--greeting=brew"
+ system "#{bin}/hello", "--greeting=brew"
end
end