From 36630fb8c9587ae7aa3396143a58e6c990601baa Mon Sep 17 00:00:00 2001 From: web3-developer <51288821+web3-developer@users.noreply.github.com> Date: Mon, 22 Jul 2024 19:11:52 +0800 Subject: [PATCH] Fix issue on MacOS where build is never skipped even when the build artifacts already exist. --- scripts/build_static_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_static_deps.sh b/scripts/build_static_deps.sh index 4aa1c88..2faf2c5 100755 --- a/scripts/build_static_deps.sh +++ b/scripts/build_static_deps.sh @@ -32,7 +32,7 @@ export ROCKSDB_DISABLE_BZIP=1 export PORTABLE=1 export DEBUG_LEVEL=0 -if ${MAKE} -C "${ROCKSDB_LIB_DIR}" --dry-run unity.a | grep -q "'unity.a' is up to date."; then +if ${MAKE} -C "${ROCKSDB_LIB_DIR}" --dry-run unity.a | grep -q "unity.a' is up to date."; then echo "RocksDb static libraries already built. Skipping build." exit 0 else