Skip to content
Snippets Groups Projects
Commit 5593e4ba authored by Matthew Pickering's avatar Matthew Pickering
Browse files

Remove unused file

parent eaa667de
No related branches found
Tags ghc-7.11-start
No related merge requests found
module GHC.Debug.Convention (socketDirectory) where
import System.FilePath
import System.Directory
-- | The default socket directory in which to place unix domain sockets in
-- ghc-debug-stub. This is currently your XDG data directory.
socketDirectory :: IO FilePath
socketDirectory = do
xdgDir <- getXdgDirectory XdgData ""
return (xdgDir </> "ghc-debug/debuggee/")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment