This is an automated email from the ASF dual-hosted git repository.

kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new ad43544e56 GH-35489: [MATLAB] Add CMake `build` directory to MATLAB 
`.gitignore` (#35493)
ad43544e56 is described below

commit ad43544e5645dd70c9bde11fa9b1988040446db5
Author: Kevin Gurney <[email protected]>
AuthorDate: Mon May 8 19:52:16 2023 -0400

    GH-35489: [MATLAB] Add CMake `build` directory to MATLAB `.gitignore` 
(#35493)
    
    ### Rationale for this change
    
    A typical name that is used for the build folder when building CMake 
projects is `build`.
    
    The documentation for building the MATLAB interface [mentions using `build` 
as the build directory 
name](https://github.com/apache/arrow/tree/main/matlab#build). It would be 
helpful if `build/` was added to the MATLAB interface `.gitignore` so that the 
build directory doesn't show up in the list of untracked files with `git`.
    
    ### What changes are included in this PR?
    
    Added `build` to the MATLAB `.gitignore`.
    
    ### Are these changes tested?
    
    Manually verified on Debian 11 that the `build` folder doesn't show up as 
untracked with `git`.
    
    ### Are there any user-facing changes?
    
    No.
    * Closes: #35489
    
    Authored-by: Kevin Gurney <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 matlab/.gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/matlab/.gitignore b/matlab/.gitignore
index e89b1b9af7..564bb0c51a 100644
--- a/matlab/.gitignore
+++ b/matlab/.gitignore
@@ -18,6 +18,7 @@
 # CMake files
 CMakeFiles/*
 CMakeCache.txt
+build/
 
 # MEX files
 *.mex*

Reply via email to