From 73de7c3c1affeb69bccc13576c51ca4cf0518f09 Mon Sep 17 00:00:00 2001 From: Taegyun Kim Date: Mon, 26 Aug 2024 16:45:04 -0400 Subject: [PATCH] check it right --- scripts/docs/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/docs/build.sh b/scripts/docs/build.sh index 5f7eefcc636..ff073079b5d 100755 --- a/scripts/docs/build.sh +++ b/scripts/docs/build.sh @@ -2,7 +2,7 @@ set -eux # DEV: unless it's built with editable, following sphinx-build fails -if (!$CIRCLECI && !(pip list --editable | grep -q ddtrace)); then +if [ -z ${CIRCLECI+x} ]; then CMAKE_BUILD_PARALLEL_LEVEL=$(nproc) pip install -v -e . fi