summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Git/Command.hs10
-rw-r--r--doc/todo/windows_support.mdwn10
2 files changed, 10 insertions, 10 deletions
diff --git a/Git/Command.hs b/Git/Command.hs
index 034c4ecb5..a4e5c1a4a 100644
--- a/Git/Command.hs
+++ b/Git/Command.hs
@@ -25,18 +25,10 @@ gitCommandLine :: [CommandParam] -> Repo -> [CommandParam]
gitCommandLine params r@(Repo { location = l@(Local _ _ ) }) =
setdir : settree ++ gitGlobalOpts r ++ params
where
- setdir = Param $ "--git-dir=" ++ gitpath (gitdir l)
+ setdir = Param $ "--git-dir=" ++ gitdir l
settree = case worktree l of
Nothing -> []
Just t -> [Param $ "--work-tree=" ++ gitpath t]
-#ifdef mingw32_HOST_OS
- -- despite running on windows, msysgit wants a unix-formatted path
- gitpath s
- | absoluteGitPath s = "/" ++ dropDrive (toInternalGitPath s)
- | otherwise = s
-#else
- gitpath = id
-#endif
gitCommandLine _ repo = assertLocal repo $ error "internal"
{- Runs git in the specified repo. -}
diff --git a/doc/todo/windows_support.mdwn b/doc/todo/windows_support.mdwn
index 628eb597b..aefec9f50 100644
--- a/doc/todo/windows_support.mdwn
+++ b/doc/todo/windows_support.mdwn
@@ -46,7 +46,15 @@ now! --[[Joey]]
the directory somehow.
* gcrypt is not ported to windows (and as a shell script, may need
to be rewritten)
+* webapp lets user choose to encrypt repo, and generate gpg key,
+ before checking that gcrypt is not installed
* glacier-cli is not easily available (probably)
* When clicking on the Files at the top of the webapp, a file
browser *is* opened, but it has a Z-order underneath the web browser.
-* TODO: test S3 and box.com setup in webapp now that they should work..
+
+## stuff needing testing
+
+* test S3 and box.com setup in webapp now that they should work..
+* test that adding a repo on a removable drive works; that git is synced to
+ it and files can be transferred to it and back
+