1
0
mirror of synced 2026-04-25 03:45:30 +00:00

Add a call to check for orphaned versions after any checkout (#1973)

* Add a call to check for orphaned versions after any checkout

* use == instead of -eq for optional

* Add a scripts/install-repo-checks for things to run after checkout; only this versioning error checked for now
This commit is contained in:
Larry Masinter
2025-01-25 11:15:27 -08:00
committed by GitHub
parent ef6a645bf5
commit 9f980276bf
4 changed files with 43 additions and 0 deletions

3
scripts/post-checkout.sh Executable file
View File

@@ -0,0 +1,3 @@
#/bin/sh
find . -name "*.~[1-9]*~" -exec if \[ ! -f {}:h \]\; then echo "{}" " with no versionless" \;