fix android app upgrade hang
rm was blocked waiting for input
This commit is contained in:
parent
323aaac805
commit
422928394e
2 changed files with 4 additions and 4 deletions
|
@ -8,7 +8,7 @@ Stability: Stable
|
||||||
Copyright: 2010-2013 Joey Hess
|
Copyright: 2010-2013 Joey Hess
|
||||||
License-File: COPYRIGHT
|
License-File: COPYRIGHT
|
||||||
Homepage: http://git-annex.branchable.com/
|
Homepage: http://git-annex.branchable.com/
|
||||||
Build-type: Simple
|
Build-type: Custom
|
||||||
Category: Utility
|
Category: Utility
|
||||||
Synopsis: manage files with git, without checking their contents into git
|
Synopsis: manage files with git, without checking their contents into git
|
||||||
Description:
|
Description:
|
||||||
|
|
|
@ -25,7 +25,7 @@ buildtree () {
|
||||||
for prog in busybox git-annex git-shell git-upload-pack git gpg rsync ssh ssh-keygen; do
|
for prog in busybox git-annex git-shell git-upload-pack git gpg rsync ssh ssh-keygen; do
|
||||||
$cmd echo "installing $prog"
|
$cmd echo "installing $prog"
|
||||||
if $cmd test -e "$base/bin/$prog"; then
|
if $cmd test -e "$base/bin/$prog"; then
|
||||||
$cmd rm "$base/bin/$prog"
|
$cmd rm -f "$base/bin/$prog"
|
||||||
fi
|
fi
|
||||||
$cmd ln "$base/lib/lib.$prog.so" "$base/bin/$prog"
|
$cmd ln "$base/lib/lib.$prog.so" "$base/bin/$prog"
|
||||||
done
|
done
|
||||||
|
@ -39,11 +39,11 @@ buildtree () {
|
||||||
for link in $($cmd cat "$base/links/$prog"); do
|
for link in $($cmd cat "$base/links/$prog"); do
|
||||||
$cmd echo "linking $link to $prog"
|
$cmd echo "linking $link to $prog"
|
||||||
if $cmd test -e "$base/$link"; then
|
if $cmd test -e "$base/$link"; then
|
||||||
$cmd rm "$base/$link"
|
$cmd rm -f "$base/$link"
|
||||||
fi
|
fi
|
||||||
$cmd ln "$base/bin/$prog" "$base/$link"
|
$cmd ln "$base/bin/$prog" "$base/$link"
|
||||||
done
|
done
|
||||||
$cmd rm "$base/links/$prog"
|
$cmd rm -f "$base/links/$prog"
|
||||||
done
|
done
|
||||||
|
|
||||||
$cmd mkdir -p "$base/templates"
|
$cmd mkdir -p "$base/templates"
|
||||||
|
|
Loading…
Add table
Reference in a new issue