Take only the files in the directory, not the directory itself (this causes issues when installing)

This commit is contained in:
Joshua Harlow
2012-06-27 16:32:41 -07:00
parent 6355fa5277
commit abe83d376d

View File

@@ -170,7 +170,8 @@ def generate_spec_contents(args, tmpl_fn):
if k != args.boot:
post_remove.append(v)
else:
other_files.append(v)
take = v + "*"
other_files.append(take)
subs['post_remove'] = post_remove
subs['files'] = other_files