aboutsummaryrefslogtreecommitdiff
path: root/doc/checksum.scm
diff options
context:
space:
mode:
Diffstat (limited to 'doc/checksum.scm')
-rw-r--r--doc/checksum.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/checksum.scm b/doc/checksum.scm
index 4d8bfaf..e746779 100644
--- a/doc/checksum.scm
+++ b/doc/checksum.scm
@@ -1,15 +1,15 @@
(define md5sum
- (command #:inputs (file #:type 'File)
+ (command #:inputs (file #:type File)
#:run "md5sum" file
#:outputs (md5 #:type 'stdout)))
(define sha1sum
- (command #:inputs (file #:type 'File)
+ (command #:inputs (file #:type File)
#:run "sha1sum" file
#:outputs (sha1 #:type 'stdout)))
(define sha256sum
- (command #:inputs (file #:type 'File)
+ (command #:inputs (file #:type File)
#:run "sha256sum" file
#:outputs (sha256 #:type 'stdout)))