Move all scripts to root
This commit is contained in:
parent
abb9c54036
commit
eae0a7e0e3
|
|
@ -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
|
#!/bin/sh
|
||||||
|
|
||||||
cd core/
|
|
||||||
|
|
||||||
APISNAP=api.snap.txt
|
APISNAP=api.snap.txt
|
||||||
|
|
||||||
./scripts/api_snapshot > $APISNAP
|
./scripts/api_snapshot lishwist/core > core/$APISNAP
|
||||||
git diff --quiet $APISNAP
|
git diff --quiet core/$APISNAP
|
||||||
|
|
||||||
if [[ $? -ne 0 ]]; then
|
if [[ $? -ne 0 ]]; then
|
||||||
echo "There are unstaged changes to $APISNAP"
|
echo "There are unstaged changes to $APISNAP"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue