From e32210c1117868baa723d291058d9a89f2ca7c79 Mon Sep 17 00:00:00 2001 From: web3-developer <51288821+web3-developer@users.noreply.github.com> Date: Fri, 28 Jun 2024 20:49:19 +0800 Subject: [PATCH] Fix mistake. --- 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 ac4a673..4aa1c88 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 static_lib | grep -q 'Nothing to be done'; 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