summaryrefslogtreecommitdiff
path: root/t/t9824-git-p4-git-lfs.sh
diff options
context:
space:
mode:
authorLars Schneider <larsxschneider@gmail.com>2016-04-28 06:26:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-04-28 17:03:13 (GMT)
commit82f2567e3d01a6eeb4c6a0b9139232034de6e60f (patch)
tree1ca0f66b032017edf28f3b0e0035d4fe795e4e5f /t/t9824-git-p4-git-lfs.sh
parent3d319f2c63c5a778b8f0aa8b3c11f1335d84e29b (diff)
downloadgit-82f2567e3d01a6eeb4c6a0b9139232034de6e60f.zip
git-82f2567e3d01a6eeb4c6a0b9139232034de6e60f.tar.gz
git-82f2567e3d01a6eeb4c6a0b9139232034de6e60f.tar.bz2
git-p4: fix Git LFS pointer parsing
Git LFS 1.2.0 removed a preamble from the output of the 'git lfs pointer' command [1] which broke the parsing of this output. Adjust the parser to support the old and the new format. Please note that this patch slightly changes the second return parameter from a list of LF terminated strings to a single string that contains a number of LF characters. [1] https://github.com/github/git-lfs/commit/da2935d9a739592bc775c98d8ef4df9c72ea3b43 Signed-off-by: Lars Schneider <larsxschneider@gmail.com> Helped-by: Sebastian Schuberth <sschuberth@gmail.com> Helped-by: Ben Woosley <ben.woosley@gmail.com> Signed-off-by: Lars Schneider <larsxschneider@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9824-git-p4-git-lfs.sh')
-rwxr-xr-xt/t9824-git-p4-git-lfs.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t9824-git-p4-git-lfs.sh b/t/t9824-git-p4-git-lfs.sh
index 0b664a3..ca93ac8 100755
--- a/t/t9824-git-p4-git-lfs.sh
+++ b/t/t9824-git-p4-git-lfs.sh
@@ -13,6 +13,10 @@ test_file_in_lfs () {
FILE="$1" &&
SIZE="$2" &&
EXPECTED_CONTENT="$3" &&
+ sed -n '1,1 p' "$FILE" | grep "^version " &&
+ sed -n '2,2 p' "$FILE" | grep "^oid " &&
+ sed -n '3,3 p' "$FILE" | grep "^size " &&
+ test_line_count = 3 "$FILE" &&
cat "$FILE" | grep "size $SIZE" &&
HASH=$(cat "$FILE" | grep "oid sha256:" | sed -e "s/oid sha256://g") &&
LFS_FILE=".git/lfs/objects/$(echo "$HASH" | cut -c1-2)/$(echo "$HASH" | cut -c3-4)/$HASH" &&