summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authormithrandi@311efa1b2b5c4999c2edae7da06fb825899e8a822016-03-07 20:11:11 +0000
committeradmin2016-03-07 20:11:11 +0000
commit90965e34489bc7d4bf9d6425c722d6bd82f04b7a (patch)
tree1e818d99a61e029c3d2d2d30e52b28a231315aaa /doc
parent57fa2c0e08a83297782419730a4b3de65cb25d40 (diff)
removed
Diffstat (limited to 'doc')
-rw-r--r--doc/todo/detect_and_use___96__GHC__95__PACKAGE__95__PATH__96__/comment_2_db91010cbf80ca36c734c27340e634a2._comment30
1 files changed, 0 insertions, 30 deletions
diff --git a/doc/todo/detect_and_use___96__GHC__95__PACKAGE__95__PATH__96__/comment_2_db91010cbf80ca36c734c27340e634a2._comment b/doc/todo/detect_and_use___96__GHC__95__PACKAGE__95__PATH__96__/comment_2_db91010cbf80ca36c734c27340e634a2._comment
deleted file mode 100644
index 38d0ba90..00000000
--- a/doc/todo/detect_and_use___96__GHC__95__PACKAGE__95__PATH__96__/comment_2_db91010cbf80ca36c734c27340e634a2._comment
+++ /dev/null
@@ -1,30 +0,0 @@
-[[!comment format=mdwn
- username="mithrandi@311efa1b2b5c4999c2edae7da06fb825899e8a82"
- nickname="mithrandi"
- subject="comment 2"
- date="2016-03-07T20:10:39Z"
- content="""
-I got Propellor to work with stack by applying this patch (to disable the auto-building):
-
-```
-diff --git a/src/Propellor/CmdLine.hs b/src/Propellor/CmdLine.hs
-index 5dbc583..b83bb91 100644
---- a/src/Propellor/CmdLine.hs
-+++ b/src/Propellor/CmdLine.hs
-@@ -119,7 +119,7 @@ defaultMain hostlist = withConcurrentOutput $ do
- fetchFirst (onlyprocess (update Nothing))
- go _ (Update (Just h)) = update (Just h)
- go _ Merge = mergeSpin
-- go cr cmdline@(Spin hs mrelay) = buildFirst cr cmdline $ do
-+ go _ cmdline@(Spin hs mrelay) = buildFirst NoRebuild cmdline $ do
- unless (isJust mrelay) commitSpin
- forM_ hs $ \hn -> withhost hn $ spin mrelay hn
- go cr (Run hn) = fetchFirst $
-```
-
-I then replaced the \"propellor\" binary/symlink with this little wrapper:
-
-#!/bin/sh
-stack build && exec stack exec -- propellor-config \"$@\"
-
-"""]]