[enh] create build dir

This commit is contained in:
Laurent Peuch 2015-12-08 06:55:01 +01:00
parent 590aef00cf
commit 4fe86cd7e9

View File

@ -1,3 +1,12 @@
#!/usr/bin/env python
import os
def main():
if not os.path.exists("build"):
os.makedirs("build")
if __name__ == '__main__':
main()