summaryrefslogtreecommitdiff
path: root/doc/bugs/Android_version_apparently_unable_to_run_sha256sum.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-05-29 15:23:05 -0400
commit1f6cfecc972b121fa42ea80383183bbaccc2195a (patch)
tree0a450c4226f5e05c2a3597a9f520376de281fffe /doc/bugs/Android_version_apparently_unable_to_run_sha256sum.mdwn
parenta95fb731cd117f35a6e0fce90d9eb35d0941e26e (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were least edited before 2014. Command line used: for f in $(grep -l '\[\[done\]\]' *.mdwn); do if [ -z $(git log --since=2014 --pretty=oneline "$f") ]; then git rm $f; git rm -rf $(echo "$f" | sed 's/.mdwn$//'); fi; done
Diffstat (limited to 'doc/bugs/Android_version_apparently_unable_to_run_sha256sum.mdwn')
-rw-r--r--doc/bugs/Android_version_apparently_unable_to_run_sha256sum.mdwn27
1 files changed, 0 insertions, 27 deletions
diff --git a/doc/bugs/Android_version_apparently_unable_to_run_sha256sum.mdwn b/doc/bugs/Android_version_apparently_unable_to_run_sha256sum.mdwn
deleted file mode 100644
index 36f9a452b..000000000
--- a/doc/bugs/Android_version_apparently_unable_to_run_sha256sum.mdwn
+++ /dev/null
@@ -1,27 +0,0 @@
-I’m running git-annex 5.20140517-gee56d21 on Android 4.3.
-
-Running “git annex add filename” from the command line fails to execute sha256sum:
-
-[[!format sh """
-git-annex: sha256sum: createProcess: runInteractiveProcess: exec: does not exist (No such file or directory)
-failed
-git-annex: add: 1 failed
-"""]]
-
-“type sha256sum” says “sha256sum not found”, and indeed, /data/data/ga.androidterm/bin only contains the following files: busybox, git, git-annex, git-receive-pack, git-shell, git-upload-archive, git-upload-pack, gpg, rsync, ssh, ssh-keygen, trustedkeys.gpg.
-
-Running “busybox sha256sum” does the right thing.
-
-The assistant says “Added filename” every time it’s started but the file does not actually get added.
-
-The only relevant log lines seem to be:
-
-[[!format sh """
-[2014-05-18 16:57:06 EEST] Watcher: add direct git-annex.apk
-[2014-05-18 16:57:07 EEST] read: lsof ["-F0can","--","git-annex.apk"]
-[2014-05-18 16:57:08 EEST] Committer: Adding git-annex.apk
-add git-annex.apk [2014-05-18 16:57:08 EEST] chat: git [--git-dir=/storage/emulated/legacy/annex/.git","--work-tree=/storage/emulated/legacy/annex","-c","core.bare=false","check-attr","-z","--stdin","annex.backend","annex.numcopies","--"]
-[2014-05-18 16:57:08 EEST] read: sha256sum ["git-annex.apk"]
-"""]]
-
-> Modified runshell to use busybox install -s; [[done]] --[[Joey]]