From bed5271d3f7ca454edb7075576054cd8cbc60584 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 25 Apr 2018 17:51:50 -0400 Subject: [PATCH] fix path to termux boot file --- Assistant/Install.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assistant/Install.hs b/Assistant/Install.hs index 13e54fd7c3..9b39de233e 100644 --- a/Assistant/Install.hs +++ b/Assistant/Install.hs @@ -62,7 +62,7 @@ ensureInstalled = ifM (isJust <$> getEnv "GIT_ANNEX_PACKAGE_INSTALL") ( do -- Integration with the Termux:Boot app. home <- myHomeDir - let bootfile = home ".termux" "boot" + let bootfile = home ".termux" "boot" "git-annex" unlessM (doesFileExist bootfile) $ do createDirectoryIfMissing True (takeDirectory bootfile) writeFile bootfile "git-annex assistant --autostart"