summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess2016-03-07 16:50:43 -0400
committerJoey Hess2016-03-07 16:50:43 -0400
commit67747c37f527166acaf86a5bce5a6edd4b53cc47 (patch)
treefee89fcdc493121c7feb9621c7e5c4e95aa2fb32
parente12f3dba5690f5d3978cf11cf304682ec35e50c7 (diff)
unnecessary parens
-rw-r--r--src/Propellor/Bootstrap.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Bootstrap.hs b/src/Propellor/Bootstrap.hs
index 911182cc..c5004a52 100644
--- a/src/Propellor/Bootstrap.hs
+++ b/src/Propellor/Bootstrap.hs
@@ -41,7 +41,7 @@ buildCommand = intercalate " && "
-- Run cabal configure to check if all dependencies are installed;
-- if not, run the depsCommand.
checkDepsCommand :: System -> ShellCommand
-checkDepsCommand sys = "if ! cabal configure >/dev/null 2>&1; then " ++ (depsCommand sys) ++ "; fi"
+checkDepsCommand sys = "if ! cabal configure >/dev/null 2>&1; then " ++ depsCommand sys ++ "; fi"
-- Install build dependencies of propellor.
--