Browse Source

dont apply license to `stb_image.h` and `json.hpp`

jmorganca 10 months ago
parent
commit
6dfd6db10c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      llama/sync.sh

+ 1 - 1
llama/sync.sh

@@ -98,7 +98,7 @@ $(sed 's/^/ * /' <$src_dir/LICENSE)
 EOF
 
 LICENSE_FILES=$(find $dst_dir -type f \( -name "*.c" -o -name "*.h" -o -name "*.cpp" -o -name "*.m" -o -name "*.metal" -o -name "*.cu" -o -name "*.cuh" \))
-EXCLUDED_FILES=("sgemm.cpp" "sgemm.h" "sampling_ext.cpp" "sampling_ext.h" "metal.c")
+EXCLUDED_FILES=("sgemm.cpp" "sgemm.h" "sampling_ext.cpp" "sampling_ext.h" "metal.c", "stb_image.h", "json.hpp")
 
 for IN in $LICENSE_FILES; do
     for EXCLUDED in "${EXCLUDED_FILES[@]}"; do