From 7c8e5b35ce22c00851065e101c4f1e8ae9407287 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Wed, 30 Oct 2019 10:53:29 -0400
Subject: [PATCH] Try passing the same flag to compute the path

From #haskell:

> that might change optimization and thereby the abi since cross-module
> inlining information will be absent with -O0 / no -O
---
 .circleci/config.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 69c3e83..48d680e 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -169,7 +169,7 @@ jobs:
       - run:
           name: "Prepare Artifacts for Upload"
           command: |
-            mv $(nix-shell shell.nix --run "stack path --local-doc-root")/PaymentServer-* /tmp/PaymentServer-docs
+            mv $(nix-shell shell.nix --run "stack path --fast --local-doc-root")/PaymentServer-* /tmp/PaymentServer-docs
 
       - store_artifacts:
           # This contains the html haddock output for the project.
-- 
GitLab