Reverting debug echo statements in script

This commit is contained in:
nikhiljindal 2014-12-19 15:37:25 -08:00
parent ffb01165f3
commit 90d19ed7a5

View File

@ -33,19 +33,13 @@ fi
DATAFILE=pkg/ui/datafile.go
TMP_DATAFILE=/tmp/datafile.go
echo "running go-bindata"
go-bindata -nocompress -o $DATAFILE -prefix ${PWD} -pkg ui www/...
echo "ran go-bindata"
cat hooks/boilerplate.go.txt > $TMP_DATAFILE
echo "// generated by hack/build-ui.sh; DO NOT EDIT
" >> $TMP_DATAFILE
cat $DATAFILE >> $TMP_DATAFILE
echo "file generated. gofmt ing it"
gofmt -s -w $TMP_DATAFILE
mv $TMP_DATAFILE $DATAFILE
echo "script over. Moving the file from /tmp to /pkg/ui"