From 3f6e0f8db760d7c115655cae9a1f646daf579e3e Mon Sep 17 00:00:00 2001 From: liyunfei Date: Wed, 9 Jul 2025 15:24:56 +0800 Subject: [PATCH] change build.sh's permision to 755 --- .gitignore | 4 ++++ build.sh | 0 2 files changed, 4 insertions(+) mode change 100644 => 100755 build.sh diff --git a/.gitignore b/.gitignore index 20c4f52cd378..865102a853c4 100644 --- a/.gitignore +++ b/.gitignore @@ -28,6 +28,10 @@ # Nested build directory /build* +!build.sh + +# Nested install directory +/install* #==============================================================================# # Explicit files to ignore (only matches one). diff --git a/build.sh b/build.sh old mode 100644 new mode 100755 -- Gitee