Skip to content

Commit

Permalink
oops. fixed test_it.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Romain Slootmaekers committed May 8, 2012
1 parent 0b4bcd3 commit 4d8f590
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test_it.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
bin = bin_dir +'/arakoon'

def prologue():
if not os.path.exists(bin_dir):
os.makedirs(bin_dir)
if not os.path.exists(bin):
if not os.path.exists(bin_dir):
os.makedirs(bin_dir)
subprocess.call(['cp','./barakoon.native', bin])
else:
version = subprocess.check_output(['./barakoon.native','--version'])
version2 = subprocess.check_output([bin,'--version'])
Expand Down

0 comments on commit 4d8f590

Please sign in to comment.