summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fsmgr.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/fsmgr.hs b/fsmgr.hs
index 894bd29..cc44796 100644
--- a/fsmgr.hs
+++ b/fsmgr.hs
@@ -56,9 +56,9 @@ buildRoot config@DiskImageConfig{..} finalOut = do
56 -- "Required" even if no packages are specified. When there is a parent, 56 -- "Required" even if no packages are specified. When there is a parent,
57 -- assume that this has already happened. 57 -- assume that this has already happened.
58 cmd_ "selfstrap --skip-update" (("--unpack" `consWhen` unpackOnly) ["-t", mountpoint]) packageNames 58 cmd_ "selfstrap --skip-update" (("--unpack" `consWhen` unpackOnly) ["-t", mountpoint]) packageNames
59 forM_ debs $ \pkg -> do cmd_ (AddEnv "DEBIAN_FRONTEND" "noninteractive") 59 when (not $ null debs) $ do
60 ["dpkg"] [if unpackOnly then "--unpack" else "--install"] 60 cmd_ (AddEnv "DEBIAN_FRONTEND" "noninteractive")
61 ["--root", mountpoint, pkg] 61 ["dpkg"] [if unpackOnly then "--unpack" else "--install"] debs
62 {- 2.5. install apt package cache -} 62 {- 2.5. install apt package cache -}
63 -- TODO 63 -- TODO
64 {- 3. binaries -} 64 {- 3. binaries -}