Skip to content

Commit

Permalink
Include module path in progress message (haskell/ghcide#746)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepeiborra authored Sep 2, 2020
1 parent 2b251e5 commit 27b3e02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ghcide/session-loader/Development/IDE/Session.hs
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ loadSession dir = do
cradle <- maybe (loadImplicitCradle $ addTrailingPathSeparator dir) loadCradle hieYaml
-- Display a user friendly progress message here: They probably don't know what a
-- cradle is
let progMsg = "Setting up project " <> T.pack (takeBaseName (cradleRootDir cradle))

let progMsg = "Setting up " <> T.pack (takeBaseName (cradleRootDir cradle))
<> " (for " <> T.pack cfp <> ")"
eopts <- withIndefiniteProgress progMsg NotCancellable $
cradleToOptsAndLibDir cradle cfp

Expand Down

0 comments on commit 27b3e02

Please sign in to comment.