From 642fcf541da47d4224c98ec662abcdab174f6016 Mon Sep 17 00:00:00 2001 From: Kevin Peterson Date: Thu, 28 Apr 2022 15:35:10 -0500 Subject: [PATCH] Fixed ambiguous directory mask --- .ci-local/github-actions/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci-local/github-actions/util.py b/.ci-local/github-actions/util.py index 8b2af1e2..9bca4879 100644 --- a/.ci-local/github-actions/util.py +++ b/.ci-local/github-actions/util.py @@ -22,7 +22,7 @@ def create_file(filename): dirname = os.path.dirname(filename) print(dirname) if not os.path.exists(dirname): - os.makedirs(dirname, 0755) + os.makedirs(dirname, 0o0755) if not os.path.exists(filename): fh = open(filename, 'w') fh.close()