This commit is contained in:
Jack L. Frost 2016-03-03 21:49:49 +03:00
parent ef3cd20dfc
commit 3fe0d59815
1 changed files with 17 additions and 16 deletions

11
ufw
View File

@ -110,10 +110,6 @@ upload() {
get_file_hash "$file"
file_url=$( curl -fsL "${cfg_service_url}/api?mode=file&file=${file_hash}&direct=1&short=${flag_shortlink}" )
if ! (( $? )); then
printf '%s\n' "$file_url"
else
curl -sL \
-F file="@$file" \
-F upload_mode='api' \
@ -278,8 +274,13 @@ main() {
shift
;;
-A|--album-name)
misc_curl_args+=( -F "album_name=$2" )
shift
;;
-d|--description)
misc_curl_args+=( -F "description=$description" )
misc_curl_args+=( -F "description=$2" )
shift
;;