Merge remote-tracking branch 'in/master' into android-rebuild
This commit is contained in:
commit
6515ea8dde
6 changed files with 45 additions and 2 deletions
|
@ -0,0 +1,18 @@
|
||||||
|
[[!comment format=mdwn
|
||||||
|
username="John"
|
||||||
|
ip="109.242.130.160"
|
||||||
|
subject="runshell typo prevents execution"
|
||||||
|
date="2013-09-22T00:24:10Z"
|
||||||
|
content="""
|
||||||
|
Using the latest Mountain Lion build available.
|
||||||
|
|
||||||
|
>$ /Applications/git-annex.app/Contents/MacOS/git-annex
|
||||||
|
|
||||||
|
>/Applications/git-annex.app/Contents/MacOS/runshell: line 25: syntax error near unexpected token `&'
|
||||||
|
|
||||||
|
Line 25:
|
||||||
|
>echo \"** runshell loop detected!\"> &2
|
||||||
|
|
||||||
|
Fix (obvious but for the sake of completeness):
|
||||||
|
>echo \"** runshell loop detected!\" >&2
|
||||||
|
"""]]
|
|
@ -0,0 +1,8 @@
|
||||||
|
[[!comment format=mdwn
|
||||||
|
username="http://joeyh.name/"
|
||||||
|
ip="4.154.1.250"
|
||||||
|
subject="comment 14"
|
||||||
|
date="2013-09-22T14:15:28Z"
|
||||||
|
content="""
|
||||||
|
I have fixed the runshell typo and updated the builds.
|
||||||
|
"""]]
|
|
@ -0,0 +1,4 @@
|
||||||
|
I created an "full archive" repo on my local pc and an encrypted "full backup" repo on Box.com. I 'm copying files on the local repo and they are getting encrypted and uploaded to Box. Superb so far :)
|
||||||
|
|
||||||
|
What I am wondering though is, suppose my local pc dies. How do I get the data out of Box unencrypted from a new pc?
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
[[!comment format=mdwn
|
||||||
|
username="https://www.google.com/accounts/o8/id?id=AItOawkSbvo_NbY-ev1VKtzwo7nEqUmvRO6rXGA"
|
||||||
|
nickname="François"
|
||||||
|
subject="comment 14"
|
||||||
|
date="2013-09-22T18:30:45Z"
|
||||||
|
content="""
|
||||||
|
@khaije
|
||||||
|
|
||||||
|
Could you paste your config file? Here is mine: http://paste.debian.net/44856/
|
||||||
|
I don't have any COMMANDS array. Could you elaborate your modifications please?
|
||||||
|
|
||||||
|
Thanks.
|
||||||
|
"""]]
|
|
@ -20,7 +20,7 @@ if [ ! -e "$base/bin/git" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
if [ -n "$GIT_ANNEX_STANDLONE_ENV" ]; then
|
if [ -n "$GIT_ANNEX_STANDLONE_ENV" ]; then
|
||||||
echo "** runshell loop detected!"> &2
|
echo "** runshell loop detected!" >&2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Get absolute path to base, to avoid breakage when things change directories.
|
# Get absolute path to base, to avoid breakage when things change directories.
|
||||||
|
|
|
@ -22,7 +22,7 @@ if [ ! -e "$bundle/git" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
if [ -n "$GIT_ANNEX_STANDLONE_ENV" ]; then
|
if [ -n "$GIT_ANNEX_STANDLONE_ENV" ]; then
|
||||||
echo "** runshell loop detected!"> &2
|
echo "** runshell loop detected!" >&2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Get absolute path to base, to avoid breakage when things change directories.
|
# Get absolute path to base, to avoid breakage when things change directories.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue