diff options
| author | Joey Hess <joey@kitenet.net> | 2014-08-19 15:06:06 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-08-19 15:06:06 -0400 |
| commit | 527ae1dc208599bee15afd8167eeec17744a6b0b (patch) | |
| tree | 5e89924648d475efa19b6667fe2047f7f0f1f2f6 /src/wrapper.hs | |
| parent | 71ccd256da18dd4f38df0b631eee752b299602d1 (diff) | |
typo
Diffstat (limited to 'src/wrapper.hs')
| -rw-r--r-- | src/wrapper.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wrapper.hs b/src/wrapper.hs index 24d77234..3c1231ee 100644 --- a/src/wrapper.hs +++ b/src/wrapper.hs @@ -57,7 +57,8 @@ wrapper args propellordir propellorbin = do putStrLn $ "Setting up your propellor repo in " ++ propellordir putStrLn "" localexists <- doesFileExist localrepo <||> doesDirectoryExist localrepo - void $ boolSystem "git" [Param "clone", File (if localexists then localrepo else netrepo). File propellordir] + let repo = if localexists then localrepo else netrepo + void $ boolSystem "git" [Param "clone", File repo, File propellordir] buildruncfg = do changeWorkingDirectory propellordir ifM (boolSystem "make" [Param "build"]) |
