mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Merge pull request #72107 from Algunenano/list_licenses
Fix list-licenses.sh with OSX
This commit is contained in:
commit
334b28f6db
@ -13,8 +13,8 @@ fi
|
|||||||
ROOT_PATH="$(git rev-parse --show-toplevel)"
|
ROOT_PATH="$(git rev-parse --show-toplevel)"
|
||||||
LIBS_PATH="${ROOT_PATH}/contrib"
|
LIBS_PATH="${ROOT_PATH}/contrib"
|
||||||
|
|
||||||
mapfile -t libs < <(echo "${ROOT_PATH}/base/poco"; find "${LIBS_PATH}" -maxdepth 1 -type d -not -name '*-cmake' -not -name 'rust_vendor' | LC_ALL=C sort)
|
libs=$(echo "${ROOT_PATH}/base/poco"; (find "${LIBS_PATH}" -maxdepth 1 -type d -not -name '*-cmake' -not -name 'rust_vendor' | LC_ALL=C sort) )
|
||||||
for LIB in "${libs[@]}"
|
for LIB in ${libs}
|
||||||
do
|
do
|
||||||
LIB_NAME=$(basename "$LIB")
|
LIB_NAME=$(basename "$LIB")
|
||||||
|
|
||||||
@ -97,4 +97,4 @@ do
|
|||||||
done
|
done
|
||||||
|
|
||||||
# Special care for Rust
|
# Special care for Rust
|
||||||
find "${LIBS_PATH}/rust_vendor/" -name 'Cargo.toml' | xargs grep 'license = ' | (grep -v -P 'MIT|Apache|MPL' && echo "Fatal error: unrecognized licenses in the Rust code" >&2 && exit 1 || true)
|
find "${LIBS_PATH}/rust_vendor/" -name 'Cargo.toml' | xargs ${GREP_CMD} 'license = ' | (${GREP_CMD} -v -P 'MIT|Apache|MPL' && echo "Fatal error: unrecognized licenses in the Rust code" >&2 && exit 1 || true)
|
||||||
|
Loading…
Reference in New Issue
Block a user