diff options
| author | Joey Hess <joeyh@joeyh.name> | 2016-03-07 16:50:43 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2016-03-07 16:50:43 -0400 |
| commit | 67747c37f527166acaf86a5bce5a6edd4b53cc47 (patch) | |
| tree | fee89fcdc493121c7feb9621c7e5c4e95aa2fb32 /src/Propellor/Bootstrap.hs | |
| parent | e12f3dba5690f5d3978cf11cf304682ec35e50c7 (diff) | |
unnecessary parens
Diffstat (limited to 'src/Propellor/Bootstrap.hs')
| -rw-r--r-- | src/Propellor/Bootstrap.hs | 2 |
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. -- |
