We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 644e4fb commit bc0c23bCopy full SHA for bc0c23b
.github/workflows/build.yaml
@@ -24,6 +24,7 @@ jobs:
24
java-version: 21
25
- uses: gradle/actions/setup-gradle@v3
26
27
+ - run: ./scripts/enforce_git_lfs.sh
28
- run: ./gradlew kotlinUpgradeYarnLock build -PredwoodNoApps
29
30
emulator-tests:
scripts/enforce_git_lfs.sh
@@ -0,0 +1,10 @@
1
+#!/usr/bin/env bash
2
+
3
+output=$(git checkout .)
4
5
+if [[ output == *"files that should have been pointers, but weren't"* ]]; then
6
+ echo "Error: Encountered files that should have been checked in using Git LFS, but weren't."
7
+ exit 1
8
+else
9
+ exit 0
10
+fi
0 commit comments