make update/verify commands scripts

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-06-24 16:20:40 -07:00
parent 3d252cf8c0
commit 3835c529e3
3 changed files with 20 additions and 20 deletions

10
verify.sh Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -euo pipefail
git diff $(git merge-base origin/main upstream/main)..origin/main \
--diff-filter=d \
':(exclude)README.md' \
':(exclude)build.zig' \
':(exclude).github' \
':(exclude).gitignore' \
':(exclude)stub.c'