set -e in fb_compile_mongo.sh

Summary: Based on @anthony's feedback, we want to fail early if our static linking fails.

Test Plan: none

Reviewers: anthony

Reviewed By: anthony

Subscribers: dhruba, anthony, leveldb

Differential Revision: https://reviews.facebook.net/D40839
This commit is contained in:
Igor Canadi 2015-06-29 11:43:25 -07:00
parent 0a019d74a0
commit 09f5a4b486

View File

@ -1,5 +1,8 @@
#!/bin/sh
# fail early
set -e
if test -z $ROCKSDB_PATH; then
ROCKSDB_PATH=~/rocksdb
fi