Skip to content

Commit

Permalink
Fixed Behemoth to execute TableConvert, relative reference without sy…
Browse files Browse the repository at this point in the history
…mlink
  • Loading branch information
joswr1ght committed Oct 22, 2014
1 parent 748f5b8 commit 02e8c29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions indexes/Behemoth.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def AddSsdTable(path,id,config):
return config
dev,name,offset = free
ids = str(id)
os.system("./TableConvert si %s/blockdevicedata.bin %s/index.dat %s %s" % (path,path,name+":"+str(offset),ids+".idx"))
os.system("./../TableConvert/TableConvert si %s/blockdevicedata.bin %s/index.dat %s %s" % (path,path,name+":"+str(offset),ids+".idx"))
name,max,tables = config[dev]
tables[id] = offset
config[dev] = name,max,tables
Expand All @@ -104,8 +104,8 @@ def AddDeltaTable(path,id,config):
return config
dev,name,offset = free
ids = str(id)
#os.system("./TableConvert di %s %s %s" % (path,name+":"+str(offset),ids+".idx"))
print("./TableConvert di %s %s %s" % (path,name+":"+str(offset),ids+".idx"))
print("Running \"./../TableConvert/TableConvert di %s %s %s\"" % (path,name+":"+str(offset),ids+".idx"))
os.system("./../TableConvert/TableConvert di %s %s %s" % (path,name+":"+str(offset),ids+".idx"))
name,max,tables = config[dev]
tables[id] = offset
config[dev] = name,max,tables
Expand Down

0 comments on commit 02e8c29

Please sign in to comment.