diff --git a/armi/utils/outputCache.py b/armi/utils/outputCache.py index 7a0e58b11..b54cd1746 100644 --- a/armi/utils/outputCache.py +++ b/armi/utils/outputCache.py @@ -160,14 +160,13 @@ def store(exePath, inputPaths, outputFiles, cacheDir): folderLoc = _getCachedFolder(exePath, inputPaths, cacheDir) if os.path.exists(folderLoc): deleteCache(folderLoc) - os.makedirs(folderLoc, mode=0o770) + os.makedirs(folderLoc) _makeOutputManifest(outputsThatExist, folderLoc) for outputFile in outputsThatExist: baseName = os.path.basename(outputFile) cachedLoc = os.path.join(folderLoc, baseName) shutil.copy(outputFile, cachedLoc) - os.chmod(cachedLoc, 0o770) runLog.info("Added outputs for {} to the cache.".format(exePath))