Fix var name change

This commit is contained in:
Bob Lantz
2013-09-18 00:04:20 -07:00
parent 0294f5ec55
commit e0b50c8a70
+3 -3
View File
@@ -869,7 +869,7 @@ def parseArgs():
Branch = args.branch
if args.zip:
Zip = True
if not args.test and not args.run and not args.after:
if not args.test and not args.run and not args.post:
args.test = [ 'sanity', 'core' ]
for flavor in args.flavor:
if flavor not in isoURLs:
@@ -877,13 +877,13 @@ def parseArgs():
print buildFlavorString()
break
try:
build( flavor, tests=args.test, pre=args.run, post=args.after )
build( flavor, tests=args.test, pre=args.run, post=args.post )
except Exception as e:
log( '* BUILD FAILED with exception: ', e )
exit( 1 )
for image in args.image:
bootAndRunTests( image, tests=args.test, pre=args.run,
post=args.after )
post=args.post )
if not ( args.depend or args.list or args.clean or args.flavor
or args.image ):
parser.print_help()