rm didn't work if the file was already uploaded
This commit is contained in:
parent
76952ee309
commit
b118e40f72
19
sup
19
sup
|
@ -88,7 +88,7 @@ sup.upload() {
|
||||||
if ! (( $? )); then
|
if ! (( $? )); then
|
||||||
printf '%s\n' "$file_url"
|
printf '%s\n' "$file_url"
|
||||||
else
|
else
|
||||||
if curl -sL \
|
curl -sL \
|
||||||
-F file="@$file" \
|
-F file="@$file" \
|
||||||
-F upload_mode='api' \
|
-F upload_mode='api' \
|
||||||
-F flag_private="$flag_private" \
|
-F flag_private="$flag_private" \
|
||||||
|
@ -98,14 +98,15 @@ sup.upload() {
|
||||||
-F submit="" \
|
-F submit="" \
|
||||||
-A 'zerofiles.org upload script' \
|
-A 'zerofiles.org upload script' \
|
||||||
"$cfg_service_url/upload"
|
"$cfg_service_url/upload"
|
||||||
then
|
fi
|
||||||
if (( flag_rm )); then
|
|
||||||
sup.msg "Removing file: $file"
|
if (( $? )); then
|
||||||
rm "$file"
|
sup.err 'Something has gone wrong with the upload.'
|
||||||
fi
|
return 7
|
||||||
else
|
else
|
||||||
sup.err 'Something has gone wrong with the upload.'
|
if (( flag_rm )); then
|
||||||
return 7
|
sup.msg "Removing file: $file"
|
||||||
|
rm "$file"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user