2013-11-24 20:03:03 +00:00
|
|
|
{- git-annex program path
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2013 Joey Hess <id@joeyh.name>
|
2013-11-24 20:03:03 +00:00
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
|
|
|
module Annex.Path where
|
|
|
|
|
|
|
|
import Common
|
|
|
|
import Config.Files
|
2015-03-27 16:55:18 +00:00
|
|
|
import Utility.Env
|
|
|
|
|
|
|
|
import System.Environment (getExecutablePath)
|
2013-11-24 20:03:03 +00:00
|
|
|
|
|
|
|
{- A fully qualified path to the currently running git-annex program.
|
|
|
|
-
|
|
|
|
- getExecutablePath is available since ghc 7.4.2. On OSs it supports
|
|
|
|
- well, it returns the complete path to the program. But, on other OSs,
|
2015-02-28 20:59:52 +00:00
|
|
|
- it might return just the basename. Fall back to reading the programFile,
|
|
|
|
- or searching for the command name in PATH.
|
2015-03-27 16:55:18 +00:00
|
|
|
-
|
|
|
|
- The standalone build runs git-annex via ld.so, and defeats
|
|
|
|
- getExecutablePath. It sets GIT_ANNEX_PROGRAMPATH to the correct path
|
|
|
|
- to the wrapper script to use.
|
2013-11-24 20:03:03 +00:00
|
|
|
-}
|
2015-02-28 20:59:52 +00:00
|
|
|
programPath :: IO FilePath
|
2015-03-27 16:55:18 +00:00
|
|
|
programPath = go =<< getEnv "GIT_ANNEX_PROGRAMPATH"
|
|
|
|
where
|
|
|
|
go (Just p) = return p
|
|
|
|
go Nothing = do
|
2013-11-24 20:03:03 +00:00
|
|
|
#if MIN_VERSION_base(4,6,0)
|
2015-03-27 16:55:18 +00:00
|
|
|
exe <- getExecutablePath
|
|
|
|
p <- if isAbsolute exe
|
|
|
|
then return exe
|
|
|
|
else readProgramFile
|
2013-11-24 20:03:03 +00:00
|
|
|
#else
|
2015-03-27 16:55:18 +00:00
|
|
|
p <- readProgramFile
|
2013-11-24 20:03:03 +00:00
|
|
|
#endif
|
2015-03-27 16:55:18 +00:00
|
|
|
maybe cannotFindProgram return =<< searchPath p
|