Skip to content

Commit

Permalink
One more script fix
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Aug 29, 2016
1 parent df93c21 commit 70c6c50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/build_site.py
Expand Up @@ -7,6 +7,7 @@
import glob
import json
import os
import os.path

import colorama

Expand Down Expand Up @@ -66,7 +67,7 @@ def get_data(theme):
'bootstrap3' in data['chain']) and \
'bootstrap3-gradients' not in data['chain']
data['engine'] = utils.get_template_engine(data['chain'])
data['chain'] = data['chain'][::-1]
data['chain'] = [os.path.basename(i) for i in reversed(data['chain'])]

data['allver'] = []
for v in ALL_VERSIONS_SUPPORTED:
Expand Down

0 comments on commit 70c6c50

Please sign in to comment.