actually return the proper url

This commit is contained in:
Jack L. Frost 2015-06-22 02:44:11 +03:00
parent d3e99ec189
commit 78b17aa234
1 changed files with 3 additions and 2 deletions

5
sup
View File

@ -83,8 +83,9 @@ sup.upload() {
sup.get_hash "$file"
if curl -fsL "${cfg_service_url}/api?mode=file&file=${file_hash}" >/dev/null; then
printf '%s\n' "${cfg_service_url}/hell/${file_hash}"
file_url=$( curl -fsL "${cfg_service_url}/api?mode=file&file=${file_hash}&direct=1" )
if ! (( $? )); then
printf '%s\n' "$file_url"
else
if curl -fsL \
-F file="@$file" \