make reported leftover file paths absolute
This commit is contained in:
parent
f09f4bd1b7
commit
bed06d1334
@ -1437,11 +1437,15 @@ rmGhcupDirs = do
|
|||||||
|
|
||||||
reportRemainingFiles ghcupDir = do
|
reportRemainingFiles ghcupDir = do
|
||||||
remainingFiles <- liftIO $ getDirectoryContentsRecursive ghcupDir
|
remainingFiles <- liftIO $ getDirectoryContentsRecursive ghcupDir
|
||||||
pure remainingFiles
|
remainingFilesAbsolute <- makePathsAbsolute remainingFiles
|
||||||
|
pure remainingFilesAbsolute
|
||||||
|
|
||||||
|
makePathsAbsolute paths = liftIO $ traverse makeAbsolute paths
|
||||||
|
|
||||||
-- we expect only files inside cache/log dir
|
-- we expect only files inside cache/log dir
|
||||||
-- we report remaining files/dirs later,
|
-- we report remaining files/dirs later,
|
||||||
-- hence the force/quiet mode in these delete functions below.
|
-- hence the force/quiet mode in these delete functions below.
|
||||||
|
|
||||||
deleteFile filepath = do
|
deleteFile filepath = do
|
||||||
hideError InappropriateType $ rmFile filepath
|
hideError InappropriateType $ rmFile filepath
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user