aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGeorgy Redkozubov <georgy.redkozubov@linaro.org>2013-04-29 13:56:39 +0400
committerGeorgy Redkozubov <georgy.redkozubov@linaro.org>2013-04-29 13:56:39 +0400
commitd581d37f7b71e0cf6679fa9d2ce545e15a60ab6d (patch)
tree9821e6e71ac88e79720abc97b6c7fdab481661ce /scripts
parent5d765e5c8718804ec288b2fb9c8122f1468e4d7d (diff)
Fix BUILD-INFO.txt permissions
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/publish_to_snapshots.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/publish_to_snapshots.py b/scripts/publish_to_snapshots.py
index f81cdaa..cce7344 100755
--- a/scripts/publish_to_snapshots.py
+++ b/scripts/publish_to_snapshots.py
@@ -461,6 +461,7 @@ def main():
return FAIL
fd, tmp_bi = tempfile.mkstemp()
os.close(fd)
+ os.chmod(tmp_bi, 0644)
publisher.combine_buildinfo(build_dir_path, target_dir_path, tmp_bi)
ret = publisher.move_artifacts(args, build_dir_path, target_dir_path)
if ret != PASS: