diff options
Diffstat (limited to '')
-rw-r--r-- | apps/AddPath.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/AddPath.hs b/apps/AddPath.hs index 9f9a5b1..a32244c 100644 --- a/apps/AddPath.hs +++ b/apps/AddPath.hs @@ -52,7 +52,7 @@ main = execParser parser >>= addPath addPath :: Options -> IO () addPath options = do - oldValue <- Env.query profile varName >>= emptyIfNotFound + oldValue <- Env.query profile varName >>= emptyIfMissing let oldPaths = Env.pathSplit oldValue let newPaths = oldPaths `union` pathsToAdd when (length oldPaths /= length newPaths) $ do @@ -73,7 +73,7 @@ addPath options = do skipPrompt = optYes options - emptyIfNotFound (Left e) + emptyIfMissing (Left e) | isDoesNotExistError e = return "" | otherwise = ioError e - emptyIfNotFound (Right s) = return s + emptyIfMissing (Right s) = return s |