summaryrefslogtreecommitdiff
path: root/bin/makemobi
diff options
context:
space:
mode:
authorSean Whitton <spw+git@sdf.org>2014-08-23 15:37:56 +0900
committerSean Whitton <spw+git@sdf.org>2014-08-23 15:38:35 +0900
commit5bc40c6e7b5a44058fb17b67d30eae8d54ac6482 (patch)
tree570c0ce92bfe300e95734d1f386b01610bc4a7c1 /bin/makemobi
parent125ba154e4d5475be8a0e39d207597e5b2b30f03 (diff)
downloaddotfiles-5bc40c6e7b5a44058fb17b67d30eae8d54ac6482.tar.gz
improve kindle scripts to not require quoting all file inputs
Diffstat (limited to 'bin/makemobi')
-rwxr-xr-xbin/makemobi2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/makemobi b/bin/makemobi
index 1c3dee24..cc23ccca 100755
--- a/bin/makemobi
+++ b/bin/makemobi
@@ -5,7 +5,7 @@ title="$2"
author="$3"
output="${input%.*}.mobi"
-ebook-convert $input $output \
+ebook-convert "$input" "$output" \
--output-profile kindle_pw \
--authors "$author" \
--title "$title"