summaryrefslogtreecommitdiff
path: root/doc/bugs/getEffectiveUserID_not_supported_on_Windows.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-04-19 13:46:11 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-04-19 13:55:29 -0400
commitdbfc00e2a6ad99200da35f75f889174cd7bfd195 (patch)
tree9d8a9d1353ab10376183c1bda881fface04b6fcb /doc/bugs/getEffectiveUserID_not_supported_on_Windows.mdwn
parent41b7950285ef1e91b80c441c2be68a1ef4d0d27c (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were last edited or commented before Q3 2015. Command line used: for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --pretty=oneline -- "$d")" ]; then git rm -- "$f"; git rm -rf "$d"; fi; done for f in $(grep -l '|done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --pretty=oneline -- "$d")" ]; then git rm -- "$f"; git rm -rf "$d"; fi; done
Diffstat (limited to 'doc/bugs/getEffectiveUserID_not_supported_on_Windows.mdwn')
-rw-r--r--doc/bugs/getEffectiveUserID_not_supported_on_Windows.mdwn28
1 files changed, 0 insertions, 28 deletions
diff --git a/doc/bugs/getEffectiveUserID_not_supported_on_Windows.mdwn b/doc/bugs/getEffectiveUserID_not_supported_on_Windows.mdwn
deleted file mode 100644
index e8271ff94..000000000
--- a/doc/bugs/getEffectiveUserID_not_supported_on_Windows.mdwn
+++ /dev/null
@@ -1,28 +0,0 @@
-### Please describe the problem.
-After a clean install of the latest git-annex for Windows (https://downloads.kitenet.net/git-annex/windows/current/), most git-annex commands fail with the following error message:
-
- git-annex: System.PosixCompat.User.getEffectiveUserID: not supported: illegal operation
-
-### What steps will reproduce the problem?
-
- git init
- git annex init
-
-Running for example `git annex version` or `git annex info` gives the same error message.
-
-
-### What version of git-annex are you using? On what operating system?
-
-git-annex version should be 5.20141024, but the installer does not specify version and `git annex info` does not work, so it is hard to tell for sure.
-Running Windows 7, x64. Also tried running as administrator and in a cmd.exe shell as well as Powershell.
-
-
-### Please provide any additional information below.
-
-The `git annex test` command does work, and all 84 tests passes.
-
-> [[fixed|done]]; I was able to reproduce this bug, and it was crashing
-> trying to look up the geckos username. I don't understand why this worked
-> before; some change exposed this code path on Windows. In any case, I've
-> fixed the crash, and I will be updating the windows builds with this bug
-> fix. --[[Joey]]