diff options
author | hjk <[email protected]> | 2023-05-17 17:18:11 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2023-05-19 15:07:17 +0000 |
commit | 6f31d874441050738e83af8dad920b178fc6998b (patch) | |
tree | a7954e147f2ebb175d5b833bb6dec7cde864bd6c /src/plugins/haskell/stackbuildstep.cpp | |
parent | 2274847bfe517ec4889b01fd5eaef11b9161bfe0 (diff) |
Use more FilePathAspect
Change-Id: Ib348df1460f8610607251498b07010df58d51ddf
Reviewed-by: Alessandro Portale <[email protected]>
Diffstat (limited to 'src/plugins/haskell/stackbuildstep.cpp')
-rw-r--r-- | src/plugins/haskell/stackbuildstep.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/haskell/stackbuildstep.cpp b/src/plugins/haskell/stackbuildstep.cpp index 860ef458c5f..4006ae9daad 100644 --- a/src/plugins/haskell/stackbuildstep.cpp +++ b/src/plugins/haskell/stackbuildstep.cpp @@ -38,7 +38,7 @@ bool StackBuildStep::init() if (AbstractProcessStep::init()) { const auto projectDir = QDir(project()->projectDirectory().toString()); processParameters()->setCommandLine( - {settings().stackPath.filePath(), + {settings().stackPath(), {"build", "--work-dir", projectDir.relativeFilePath(buildDirectory().toString())}}); processParameters()->setEnvironment(buildEnvironment()); } |