[ARVADOS-DEV] updated: bb617b50d0546d17280d825a0014e5c82d3b9c81
Git user
git at public.arvados.org
Thu Jan 28 22:48:25 UTC 2021
Summary of changes:
jenkins/run_upload_packages.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via bb617b50d0546d17280d825a0014e5c82d3b9c81 (commit)
from 0d66112d0a33cbdce8b7bee3ca0897fdf7462ab1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit bb617b50d0546d17280d825a0014e5c82d3b9c81
Author: Ward Vandewege <ward at curii.com>
Date: Thu Jan 28 17:48:12 2021 -0500
run_upload_packages.py should make sure the directory it tries to put a
timestamp file in exists (bugfix).
No issue #
Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <ward at curii.com>
diff --git a/jenkins/run_upload_packages.py b/jenkins/run_upload_packages.py
index 8a31d2e..daa7235 100755
--- a/jenkins/run_upload_packages.py
+++ b/jenkins/run_upload_packages.py
@@ -56,7 +56,7 @@ class TimestampFile:
try:
os.makedirs(p)
except OSError as exc:
- if exc.errno == errno.EEXIST and os.path.isdir(path):
+ if exc.errno == errno.EEXIST and os.path.isdir(p):
pass
else:
raise
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list