Use RSVP #15
|
|
@ -1,3 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
go doc -all | ./scripts/strip_godoc_comments
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
go doc -all $1 | ./scripts/strip_godoc_comments
|
||||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue