mirror of
https://github.com/sosedoff/pgweb.git
synced 2024-12-15 20:13:06 +03:00
10 lines
355 B
Bash
10 lines
355 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if grep -q 'go/src/github.com/sosedoff/pgweb' ./pkg/data/bindata.go
|
||
|
then
|
||
|
echo "=========================================================="
|
||
|
echo "ERROR: Bindata contains development references to assets!"
|
||
|
echo "Fix with 'make assets' and commit the change."
|
||
|
echo "=========================================================="
|
||
|
exit 1
|
||
|
fi
|