Skip to content

Commit

Permalink
Fix issue on MacOS where build is never skipped even when the build a…
Browse files Browse the repository at this point in the history
…rtifacts already exist.
  • Loading branch information
bhartnett committed Jul 22, 2024
1 parent 92df0b0 commit 36630fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build_static_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 36630fb

Please sign in to comment.