diff options
author | Arun Isaac | 2017-08-23 03:00:35 +0530 |
---|---|---|
committer | Arun Isaac | 2017-08-23 03:02:15 +0530 |
commit | 3a07dbcb975577734d4abf6d68e1ab83a01951bb (patch) | |
tree | db29e530770f34f8764cf0f234757f9c8ea1662a | |
parent | 1c9c6feba21b98337665b6f2b4064b2bf5b75af6 (diff) | |
download | exiftool.el-3a07dbcb975577734d4abf6d68e1ab83a01951bb.tar.gz exiftool.el-3a07dbcb975577734d4abf6d68e1ab83a01951bb.tar.lz exiftool.el-3a07dbcb975577734d4abf6d68e1ab83a01951bb.zip |
Ignore minor errors while copying tags.
* exiftool.el (exiftool-copy): Call exiftool with the "-m" flag.
-rw-r--r-- | exiftool.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exiftool.el b/exiftool.el index 0ca14c1..a9495c5 100644 --- a/exiftool.el +++ b/exiftool.el @@ -106,7 +106,7 @@ value. If no TAGS are specified, read all tags from FILE. If no TAGS are specified, copy all tags from SOURCE." (apply 'exiftool-command - "-overwrite_original" + "-m" "-overwrite_original" "-tagsFromFile" source (append (if tags |