Skip to content

Commit c0b0fdd

Browse files
committed
Remove redundant brackets
1 parent 023622e commit c0b0fdd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/utf8-troubleshoot/Main.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ showSystem = do
7070
showEnvVar "TERM"
7171

7272
-- Nix stuff
73-
let builtNix = isJust ($$(envQ @String "NIX_BUILD_TOP"))
73+
let builtNix = isJust $$(envQ @String "NIX_BUILD_TOP")
7474
when builtNix $ do
7575
putStrLn " * Built with Nix"
76-
let builtNixShell = isJust ($$(envQ @String "IN_NIX_SHELL"))
76+
let builtNixShell = isJust $$(envQ @String "IN_NIX_SHELL")
7777
when builtNixShell $ do
7878
putStrLn " * Built in nix-shell"
7979
inNixShell <- isJust <$> lookupEnv "IN_NIX_SHELL"

0 commit comments

Comments
 (0)