Fix issue on MacOS where build is never skipped even when the build artifacts already exist. (#65)

This commit is contained in:
web3-developer 2024-07-22 19:13:47 +08:00 committed by GitHub
parent 92df0b067f
commit 9a6d85e8da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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