swc-windows-installer.py: Only create the python-scripts dir if it doesn't exist
authorW. Trevor King <wking@tremily.us>
Tue, 12 Nov 2013 18:05:08 +0000 (10:05 -0800)
committerW. Trevor King <wking@tremily.us>
Tue, 12 Nov 2013 18:05:08 +0000 (10:05 -0800)
commitc6691358526b7f77e1d23649c765d605b554fb93
tree3cf5a1ccfc1aaa6ad7a1f99ca0f4308162f688d7
parentf374519f66c90132cf9dfc53a782533f0639f52d
swc-windows-installer.py: Only create the python-scripts dir if it doesn't exist

os.makedirs, unlike 'mkdir -p', errors if the target directory already
exists [1,2].

[1]: http://docs.python.org/2/library/os.html#os.makedirs
     "Raises an error exception if the leaf directory already exists
     or cannot be created"
[2]: http://docs.python.org/3/library/os.html#os.makedirs
     "If exist_ok is False (the default), an OSError is raised if the
     target directory already exists."
swc-windows-installer.py