mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 21:56:43 +00:00
Upload script modified for the new protocol specification.
This commit is contained in:
parent
ad1d1e541c
commit
3a1d968940
1 changed files with 4 additions and 4 deletions
|
|
@ -9,9 +9,9 @@ if [[ ! -z "$2" ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -f "$1" ]; then
|
if [ -f "$1" ]; then
|
||||||
hash=`wget -q -O- --post-file="$1" http://localhost:$port/raw`
|
hash=`wget -q -O- --post-file="$1" "http://localhost:$port/bzzr://"`
|
||||||
mime=`mimetype -b "$1"`
|
mime=`mimetype -b "$1"`
|
||||||
wget -q -O- --post-data="$delimiter\"hash\":\"$hash\",\"contentType\":\"$mime\"}]}" http://localhost:8500/raw
|
wget -q -O- --post-data="$delimiter\"hash\":\"$hash\",\"contentType\":\"$mime\"}]}" "http://localhost:$port/bzzr://"
|
||||||
echo
|
echo
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
@ -28,7 +28,7 @@ do
|
||||||
name=`echo "$path" | cut -c3-`
|
name=`echo "$path" | cut -c3-`
|
||||||
[ _`basename "$name"` = "_$INDEX" ] && name=`dirname "$name"`
|
[ _`basename "$name"` = "_$INDEX" ] && name=`dirname "$name"`
|
||||||
echo -n "$delimiter"
|
echo -n "$delimiter"
|
||||||
hash=`wget -q -O- --post-file="$path" http://localhost:$port/raw`
|
hash=`wget -q -O- --post-file="$path" "http://localhost:$port/bzzr://"`
|
||||||
mime=`mimetype -b "$path"`
|
mime=`mimetype -b "$path"`
|
||||||
if [ "_$name" = '_.' ]; then
|
if [ "_$name" = '_.' ]; then
|
||||||
echo -n "\"hash\":\"$hash\",\"contentType\":\"$mime\""
|
echo -n "\"hash\":\"$hash\",\"contentType\":\"$mime\""
|
||||||
|
|
@ -38,7 +38,7 @@ fi
|
||||||
delimiter='},{'
|
delimiter='},{'
|
||||||
|
|
||||||
done
|
done
|
||||||
echo -n '}]}') | wget -q -O- --post-data=`cat` http://localhost:$port/raw
|
echo -n '}]}') | wget -q -O- --post-data=`cat` "http://localhost:$port/bzzr://"
|
||||||
echo
|
echo
|
||||||
|
|
||||||
popd > /dev/null
|
popd > /dev/null
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue