fix external script for filenames with spaces from protocol
Fix the external special remotes git-annex-remote-ipfs, git-annex-remote-torrent and the example.sh template to correctly support filenames with spaces. This commit was sponsored by John Peloquin on Patreon.
This commit is contained in:
parent
dafafad115
commit
fdbfe88168
4 changed files with 15 additions and 6 deletions
6
doc/special_remotes/external/example.sh
vendored
6
doc/special_remotes/external/example.sh
vendored
|
@ -122,9 +122,11 @@ while read line; do
|
|||
fi
|
||||
;;
|
||||
TRANSFER)
|
||||
op="$2"
|
||||
key="$3"
|
||||
file="$4"
|
||||
case "$2" in
|
||||
shift 3
|
||||
file="$@"
|
||||
case "$op" in
|
||||
STORE)
|
||||
# Store the file to a location
|
||||
# based on the key.
|
||||
|
|
|
@ -81,9 +81,11 @@ while read line; do
|
|||
echo CHECKURL-CONTENTS UNKNOWN "$(urltoaddress "$url")"
|
||||
;;
|
||||
TRANSFER)
|
||||
op="$2"
|
||||
key="$3"
|
||||
file="$4"
|
||||
case "$2" in
|
||||
shift 3
|
||||
file="$@"
|
||||
case "$op" in
|
||||
STORE)
|
||||
addr=$(ipfs add -q "$file" </dev/null) || true
|
||||
if [ -z "$addr" ]; then
|
||||
|
|
|
@ -149,9 +149,11 @@ while read line; do
|
|||
rm -f "$tmp"
|
||||
;;
|
||||
TRANSFER)
|
||||
op="$2"
|
||||
key="$3"
|
||||
file="$4"
|
||||
case "$2" in
|
||||
shift 3
|
||||
file="$@"
|
||||
case "$op" in
|
||||
STORE)
|
||||
echo TRANSFER-FAILURE STORE "$key" "upload not supported"
|
||||
;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue