This is an automated email from the ASF dual-hosted git repository. brycemecum pushed a commit to branch maint-18.1.0 in repository https://gitbox.apache.org/repos/asf/arrow.git
commit c4cd5a263f38551f88572ec6e6a11172926cfe7f Author: Sutou Kouhei <[email protected]> AuthorDate: Thu Oct 17 23:59:16 2024 +0900 GH-44453: [Release] Add shebang to `07-matlab-upload.sh` (#44454) ### Rationale for this change Executable scripts should have shebang. ### What changes are included in this PR? Add `#!/usr/bin/env bash`. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * GitHub Issue: #44453 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Jacob Wujciak-Jens <[email protected]> --- dev/release/07-matlab-upload.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev/release/07-matlab-upload.sh b/dev/release/07-matlab-upload.sh index 803ceadb35..fa3f2f1086 100755 --- a/dev/release/07-matlab-upload.sh +++ b/dev/release/07-matlab-upload.sh @@ -1,3 +1,5 @@ +#!/usr/bin/env bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information
