Merge branch 'joeyconfig'

This commit is contained in:
Joey Hess 2014-08-19 15:06:10 -04:00
commit c3711ff09c
1 changed files with 2 additions and 1 deletions

View File

@ -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"])