Change path to Riak exe.

This commit is contained in:
J. Brisbin
2010-12-08 16:45:26 -06:00
parent ae4af38c05
commit d8649e881d

View File

@@ -39,13 +39,13 @@ class RiakTemplateSpec extends Specification {
@Shared def p
def setupSpec() {
p = "$riakBin start".execute()
p = "/usr/sbin/riak start".execute()
p.waitFor()
Thread.sleep(2000)
}
def cleanupSpec() {
"$riakBin stop".execute()
"/usr/sbin/riak stop".execute()
p.waitFor()
}