Skip to content
Snippets Groups Projects
Commit 1c08bc1f authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

pedi integration

parent 5d4b9a3c
No related branches found
No related tags found
No related merge requests found
import os
#setup a basic environment
# setup pedi
if not os.path.isfile("manifest.txt.config"):
os.system(os.environ['PEDI_HOME']+'/pedi --setup -m manifest.txt -l turbo -l zafl -l ps -l zipr -l stratafier -l stars -i ' + os.environ['TURBO_INSTALL'])
#setup a basic environment
env = Environment(
......@@ -32,7 +37,14 @@ Depends([turbod,cli],[rpc])
ret=[rpc,turbod,cli,prepd,zafl]
print "ret=", [str(s) for s in ret]
pedi = Command( target = "./turbo-install",
source = [ret],
action = 'echo Doing pedi in `pwd`; ' + os.environ['PEDI_HOME']+"/pedi -m manifest.txt " )
# decide whether to pedi
if Dir('.').abspath == Dir('#.').abspath:
ret=ret+pedi
Default(ret)
Return('ret')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment