From 262d8238ada85936c625ecbfebf55d041fef0e4c Mon Sep 17 00:00:00 2001 From: David Dworken Date: Wed, 8 Nov 2023 19:26:00 -0800 Subject: [PATCH] Add chmod +x so that we can run hishtory status --- scripts/actions-validate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/actions-validate.py b/scripts/actions-validate.py index 07844e0..0d63934 100644 --- a/scripts/actions-validate.py +++ b/scripts/actions-validate.py @@ -49,6 +49,7 @@ def validate_macos_signature(filename: str) -> None: def validate_hishtory_status(filename: str) -> None: assert os.path.exists(filename) + subprocess.check_output(['chmod', "+x", filename]) status = subprocess.check_output([filename, "status", "-v"]).decode('utf-8') git_hash = os.environ['GITHUB_SHA'] assert git_hash, git_hash