]> gitweb.hhaalo.de Git - scantopdf.git/commitdiff
change log missing parameter
authorBastian Dehn <hhaalo@arcor.de>
Thu, 3 Apr 2025 18:17:01 +0000 (20:17 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Thu, 3 Apr 2025 18:17:01 +0000 (20:17 +0200)
scantopdf
scantopdfbw
scantopdfgray

index b781fec8202475cf3027f0077bbac5e0adeb4308..06064688a1456b93f8062f63f60818fd1d36773e 100755 (executable)
--- a/scantopdf
+++ b/scantopdf
@@ -12,8 +12,8 @@ main()
        command -v scanimage > /dev/null \
                || errlog "command scanimage not found" \
                || return $?
-       [ -n "$pagecount" ] || errlog "no page count" || return $?
-       [ -n "$output" ] || errlog "no pdf file name" || return $?
+       [ -n "$pagecount" ] || errlog "missing page count" || return $?
+       [ -n "$output" ] || errlog "missing output name" || return $?
 
        scanimage --source=DocumentFeeder \
                --mode=Color \
index d60720d1426f214bc38f63187c3ca943f7895eec..2007c6a81fcb75baa62dae4740a4f1821f3ff7a0 100755 (executable)
@@ -12,8 +12,8 @@ main()
        command -v scanimage > /dev/null \
                || errlog "command scanimage not found" \
                || return $?
-       [ -n "$pagecount" ] || errlog "no page count" || return $?
-       [ -n "$output" ] || errlog "no pdf file name" || return $?
+       [ -n "$pagecount" ] || errlog "missing page count" || return $?
+       [ -n "$output" ] || errlog "missing output name" || return $?
 
        scanimage --source=DocumentFeeder \
                --mode=BW \
index 8ed6bc4a5350b992950c4232a91f0396f3d3c97d..0d28506f51069cdddb8e880620b5749e9230895a 100755 (executable)
@@ -12,8 +12,8 @@ main()
        command -v scanimage > /dev/null \
                || errlog "command scanimage not found" \
                || return $?
-       [ -n "$pagecount" ] || errlog "no page count" || return $?
-       [ -n "$output" ] || errlog "no pdf file name" || return $?
+       [ -n "$pagecount" ] || errlog "missing page count" || return $?
+       [ -n "$output" ] || errlog "missing output name" || return $?
 
        scanimage --source=DocumentFeeder \
                --mode=Gray \