Use RSVP #15

Merged
Teajey merged 14 commits from rsvp-lib into main 2025-09-13 03:06:22 +12:00
5 changed files with 5 additions and 7 deletions
Showing only changes of commit eae0a7e0e3 - Show all commits

View File

@ -1,3 +0,0 @@
#!/bin/bash
go doc -all | ./scripts/strip_godoc_comments

3
scripts/api_snapshot Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
go doc -all $1 | ./scripts/strip_godoc_comments

View File

@ -1,11 +1,9 @@
#!/bin/sh
cd core/
APISNAP=api.snap.txt
./scripts/api_snapshot > $APISNAP
git diff --quiet $APISNAP
./scripts/api_snapshot lishwist/core > core/$APISNAP
git diff --quiet core/$APISNAP
if [[ $? -ne 0 ]]; then
echo "There are unstaged changes to $APISNAP"