Parcourir la source

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

jmorganca il y a 11 mois
Parent
commit
6dfd6db10c
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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