Use rmFile instead of removeFile.

This commit is contained in:
Arjun Kathuria 2021-06-26 19:32:53 +05:30
parent a40d0cbb5c
commit 46fcdd356c
1 changed files with 2 additions and 2 deletions

View File

@ -1371,11 +1371,11 @@ rmGhcupDirs = do
rmEnvFile enFilePath = do
$logInfo "Removing Ghcup Environment File"
hideError doesNotExistErrorType $ liftIO $ removeFile enFilePath
hideError doesNotExistErrorType $ liftIO $ deleteFile enFilePath
rmConfFile confFilePath = do
$logInfo "removing Ghcup Config File"
hideError doesNotExistErrorType $ liftIO $ removeFile confFilePath
hideError doesNotExistErrorType $ liftIO $ deleteFile confFilePath
rmCacheDir cacheDir = do
$logInfo "removing ghcup cache Dir"