blob: 787781c9c2baa4ed806270165243e15415428a07 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
check "target file exists" cat big-file-1.txt
check "lfs file has not been expanded" cat "big-file-1.txt" | grep "git-lfs\.github\.com"
reportResults
|