diff options
| -rw-r--r-- | src/Propellor/Bootstrap.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Propellor/Bootstrap.hs b/src/Propellor/Bootstrap.hs index 2c962b12..f97fedab 100644 --- a/src/Propellor/Bootstrap.hs +++ b/src/Propellor/Bootstrap.hs @@ -16,8 +16,7 @@ type ShellCommand = String -- Should be run inside the propellor config dir, and will install -- all necessary build dependencies and build propellor. bootstrapPropellorCommand :: System -> ShellCommand -bootstrapPropellorCommand sys = - (checkDepsCommand sys) ++ +bootstrapPropellorCommand sys = checkDepsCommand sys ++ "&& if ! test -x ./propellor; then " ++ buildCommand ++ "; fi;" ++ checkBinaryCommand |
