3 """Initialize a newly-created repository."""
17 '_episodes/01-introduction.md',
30 """Check for collisions, then create."""
34 for path in BOILERPLATE:
35 if os.path.exists(path):
36 print('Warning: {0} already exists.'.format(path), file=sys.stderr)
39 print('**Exiting without creating files.**', file=sys.stderr)
43 for path in BOILERPLATE:
45 "bin/boilerplate/{}".format(path),
50 if __name__ == '__main__':