aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar i@f4fc1d4ed8c7cc91fc284462cb631c270a5195e9 <i@web>2018-03-03 16:55:16 +0000
committerGravatar admin <admin@branchable.com>2018-03-03 16:55:16 +0000
commitfad5d9bfef2cd37ecf08e697049375bd64b5e001 (patch)
tree3e1b9d8fd452e6d7cc5f4298bd53230b7bd71ee7
parent362c7f996ae9c06e3916946a01676ec56de429d2 (diff)
Added a comment: fixed prev commend
-rw-r--r--doc/bugs/git-annex_adds_unicode_characters_at_end_of_checksum/comment_5_a160bb3ce6b8b6e1fe03d649f710806e._comment25
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/bugs/git-annex_adds_unicode_characters_at_end_of_checksum/comment_5_a160bb3ce6b8b6e1fe03d649f710806e._comment b/doc/bugs/git-annex_adds_unicode_characters_at_end_of_checksum/comment_5_a160bb3ce6b8b6e1fe03d649f710806e._comment
new file mode 100644
index 000000000..f3e504313
--- /dev/null
+++ b/doc/bugs/git-annex_adds_unicode_characters_at_end_of_checksum/comment_5_a160bb3ce6b8b6e1fe03d649f710806e._comment
@@ -0,0 +1,25 @@
+[[!comment format=mdwn
+ username="i@f4fc1d4ed8c7cc91fc284462cb631c270a5195e9"
+ nickname="i"
+ avatar="http://cdn.libravatar.org/avatar/661785c9bf4c87cc795f130b47a1c4ae"
+ subject="fixed prev commend"
+ date="2018-03-03T16:55:16Z"
+ content="""
+Oh man, yes, yes it does have something to do with extensions, it does not matter what it is, it gets added at the end if it is prefixed by a dot, even if there is something like a closing bracket in there:
+
+[[!format sh \"\"\"
+ % g an calckey test.wtf.mp3
+SHA256E-s7479642--957208748ae03fe4fc8d7877b2c9d82b7f31be0726e4a3dec9063b84cc64cf09.wtf.mp3
+ % g an calckey test.wtf\).mp3
+SHA256E-s7479642--957208748ae03fe4fc8d7877b2c9d82b7f31be0726e4a3dec9063b84cc64cf09.wtf.mp3
+\"\"\"]]
+
+So it looks like I can avoid this issue by simply adding a space within the last segment after the dot, for example:
+
+[[!format sh \"\"\"
+ % g an calckey 12.\ Change\ The\ World\ \(feat.\ 웅산\).mp3
+SHA256E-s7479642--957208748ae03fe4fc8d7877b2c9d82b7f31be0726e4a3dec9063b84cc64cf09.웅산.mp3
+ % g an calckey 12.\ Change\ The\ World\ \(feat.\ 웅산\ \).mp3
+SHA256E-s7479642--957208748ae03fe4fc8d7877b2c9d82b7f31be0726e4a3dec9063b84cc64cf09.mp3
+\"\"\"]]
+"""]]