propellor spin

This commit is contained in:
Joey Hess 2014-12-04 17:11:08 -04:00
parent 014af4a5b4
commit cdf763b8b8
2 changed files with 5 additions and 4 deletions

View File

@ -9,7 +9,8 @@ import Control.Applicative
standardPathEnv :: IO [(String, String)]
standardPathEnv = do
path <- getEnvDefault "PATH" "/bin"
addEntry "PATH" (path ++ std)
addEntry "PATH" (path ++ stdPATH)
<$> getEnvironment
where
std = "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
stdPATH :: String
stdPATH = "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"

View File

@ -94,7 +94,7 @@ cleanInstallOnce confirmation = check (not <$> doesFileExist flagfile) $
let dest = "/" ++ takeFileName d
whenM (not <$> fileExist dest) $
rename d dest
removeDirectory newOSDir
removeDirectoryRecursive newOSDir
return MadeChange
trickydirs =