Add compiler L6 report

This commit is contained in:
2020-05-13 22:20:26 -07:00
parent 028cac679f
commit d316b4a2ee
3 changed files with 632 additions and 1 deletions

16
pub.py
View File

@@ -134,6 +134,9 @@ def upload_img():
for f in files:
upload_file('img/{}'.format(f))
def upload_15411():
upload_file('15411/index.html')
def upload_15418():
upload_file('15418/index.html')
upload_file('15418/style.css')
@@ -148,7 +151,16 @@ if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Publish www.aarongutierrez.com')
pub_help = 'What to publish'
pub_choices = ['all', 'root', 'img', 'bench-local', 'bench', '15418', 'campaign']
pub_choices = [
'all',
'root',
'img',
'bench-local',
'bench',
'15411',
'15418',
'campaign',
]
parser.add_argument('pub', choices=pub_choices, help=pub_help)
args = parser.parse_args()
@@ -161,6 +173,8 @@ if __name__ == '__main__':
make_bench()
if args.pub == 'bench' or args.pub == 'all':
upload_bench()
if args.pub == '15411' or args.pub == 'all':
upload_15411()
if args.pub == '15418' or args.pub == 'all':
upload_15418()
if args.pub == 'campaign' or args.pub == 'all':