magcms/prosopopoee
2015-12-08 06:55:01 +01:00

13 lines
152 B
Python
Executable File

#!/usr/bin/env python
import os
def main():
if not os.path.exists("build"):
os.makedirs("build")
if __name__ == '__main__':
main()