Merge pull request #39 from thdaemon/master

Fix output filename can not begin with '-'
This commit is contained in:
Liam 2020-02-16 14:27:50 +00:00 committed by GitHub
commit 4f3c9eb6bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,11 +79,11 @@ if [ -z "$(command -v exiftool)" ]; then
fi
cleanup() {
rm "$tempfile"
rm -f "$tempfile"
}
# Attempt to create the output directory
mkdir -p "$outdir"
mkdir -p -- "$outdir"
# Setup temporarily file with 600 perms
tempfile="$(umask u=rwx,g=,o= && mktemp --suffix=_fa-dl)"
@ -176,7 +176,7 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
echo "File already exists, skipping. Use -w to skip this check"
fi
mime_type="$(file "$file")"
mime_type="$(file -- "$file")"
if [ $textmeta = true ]; then
echo -ne "Title: $title\nURL: $page\nFilename: $file_name\nDescription: $description" > "$file.meta"
@ -187,16 +187,16 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
# Use eyeD3 for injecting metadata into audio files (if it's installed)
if [ $eyed3 = true ] && [ $metadata = true ]; then
if [ -z "$description" ]; then
eyeD3 -t "$title" "$file" || true
eyeD3 -t "$title" -- "$file" || true
else
# HACK: eyeD3 throws an error if a description containing a ":"
eyeD3 -t "$title" --add-comment "${description//:/\\:}" "$file" || true
eyeD3 -t "$title" --add-comment "${description//:/\\:}" -- "$file" || true
fi
fi
elif [[ $mime_type == *"image"* ]]; then
# Use exiftool for injecting metadata into pictures (if it's installed)
if [ $exiftool = true ] && [ $metadata = true ]; then
exiftool "$file" -description="$description" -title="$title" -overwrite_original || true
cat -- "$file" | exiftool -description="$description" -title="$title" -overwrite_original - > "$tempfile" && mv -- "$tempfile" "$file" || true
fi
fi