8000 inxi 3.3.19-1 · ArduinoBot/homebrew-core@f68766f · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit f68766f

Browse files
Porkepixcho-m
authored andcommitted
inxi 3.3.19-1
* inxi 3.3.19-1 * inxi: remove OS name test on macOS Closes Homebrew#104121. Co-authored-by: Michael Cho <cho-m@tuta.io> Signed-off-by: Rui Chen <rui@chenrui.dev> Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
1 parent 2970bcb commit f68766f

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

Formula/inxi.rb

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
class Inxi < Formula
22
desc "Full featured CLI system information tool"
33
homepage "https://smxi.org/docs/inxi.htm"
4-
url "https://github.com/smxi/inxi/archive/3.3.13-1.tar.gz"
5-
sha256 "44d11d88fc0fd2213401436d8e7d09b755ab8af3ca10443d7f4fb32edae92fef"
4+
url "https://github.com/smxi/inxi/archive/3.3.19-1.tar.gz"
5+
sha256 "bf8881c140eac6fd266e32db31bcd90d93c5e3d429c426aacfb295d0e57e1bd9"
66
license "GPL-3.0-or-later"
77
head "https://github.com/smxi/inxi.git", branch: "master"
88

@@ -28,14 +28,6 @@ def install
2828

2929
test do
3030
inxi_output = shell_output("#{bin}/inxi")
31-
32-
# This test does not work on Linux, because on that platform
33-
# inxi does not print the OS name, only the kernel version.
34-
if OS.mac?
35-
uname = shell_output("uname").strip
36-
assert_match uname.to_str, inxi_output.to_s
37-
end
38-
3931
uname_r = shell_output("uname -r").strip
4032
assert_match uname_r.to_str, inxi_output.to_s
4133
end

0 commit comments

Comments
 (0)
0