summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoey Hess2017-07-13 13:18:26 -0400
committerJoey Hess2017-07-13 13:18:26 -0400
commit102ee2aeacf4c3561da52c2552d759dd0ded4cc4 (patch)
tree9b729d2b786c00bf8db778306a9f01d8306c5eef /src
parent88b5a726e41967147d55a87153c37501980fa574 (diff)
fix typo in build path
Diffstat (limited to 'src')
-rw-r--r--src/Propellor/Bootstrap.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Bootstrap.hs b/src/Propellor/Bootstrap.hs
index d3d0264b..21f051c9 100644
--- a/src/Propellor/Bootstrap.hs
+++ b/src/Propellor/Bootstrap.hs
@@ -83,7 +83,7 @@ buildCommand bs = intercalate " && " (go (getBuilder bs))
]
go Stack =
[ "stack build :propellor-config"
- , "ln -sf $(stack path --dist-dir)/build/propellor-config propellor"
+ , "ln -sf $(stack path --dist-dir)/build/propellor-config/propellor-config propellor"
]
-- Check if all dependencies are installed; if not, run the depsCommand.