diff options
Diffstat (limited to 'Annex/Init.hs')
-rw-r--r-- | Annex/Init.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Annex/Init.hs b/Annex/Init.hs index 43f24031c..57379535d 100644 --- a/Annex/Init.hs +++ b/Annex/Init.hs @@ -120,7 +120,7 @@ probeCrippledFileSystem = do #ifdef mingw32_HOST_OS return True #else - tmp <- fromRepo gitAnnexTmpDir + tmp <- fromRepo gitAnnexTmpMiscDir let f = tmp </> "gaprobe" createAnnexDirectory tmp liftIO $ writeFile f "" @@ -157,7 +157,7 @@ probeFifoSupport = do #ifdef mingw32_HOST_OS return False #else - tmp <- fromRepo gitAnnexTmpDir + tmp <- fromRepo gitAnnexTmpMiscDir let f = tmp </> "gaprobe" createAnnexDirectory tmp liftIO $ do |