Update skymap dir creation to use Python 3 stdlib functions
This MR updates the Python2.7 code used to handle race conditions when making shared folder locations by using os.makedirs(exist_ok=True)
. This function is a standard library function that properly handles exceptions when attempting to make (nested) directories that may already exist.