ledisdb/bootstrap.sh

14 lines
208 B
Bash
Raw Normal View History

2014-05-09 10:49:22 +04:00
#!/bin/bash
. ./dev.sh
2014-10-01 12:47:35 +04:00
# Test godep install
godep path > /dev/null 2>&1
if [ "$?" = 0 ]; then
exit 0
fi
echo "Please use [godep](https://github.com/tools/godep) to build LedisDB, :-)"
2015-08-02 04:24:20 +03:00
go get -d ./...