Skip to content

Commit dee636f

Browse files
committed
Make sure uuid is lowercase (github issue #12)
1 parent cfe8fc0 commit dee636f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pdf2remarkable.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ for filename in "$@" ; do
9595

9696
# reMarkable documents appear to be identified by universally unique IDs (UUID),
9797
# so we generate one for the document at hand
98-
uuid=$(uuidgen)
98+
uuid=$(uuidgen | tr '[:upper:]' '[:lower:]')
9999

100100
extension="${filename##*.}"
101101

0 commit comments

Comments
 (0)