fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
721 B
31 lines
721 B
#!/usr/bin/env bash
|
|
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
# If clang_format_diff.py command is not specfied, we assume we are able to
|
|
# access directly without any path.
|
|
|
|
TGT_DIFF=`git diff TARGETS | head -n 1`
|
|
|
|
if [ ! -z "$TGT_DIFF" ]
|
|
then
|
|
echo "TARGETS file has uncommitted changes. Skip this check."
|
|
exit 0
|
|
fi
|
|
|
|
echo Backup original TARGETS file.
|
|
|
|
cp TARGETS TARGETS.bkp
|
|
|
|
python buckifier/buckify_rocksdb.py
|
|
|
|
TGT_DIFF=`git diff TARGETS | head -n 1`
|
|
|
|
if [ -z "$TGT_DIFF" ]
|
|
then
|
|
mv TARGETS.bkp TARGETS
|
|
exit 0
|
|
else
|
|
echo "Please run 'python buckifier/buckify_rocksdb.py' to update TARGETS file."
|
|
echo "Do not manually update TARGETS file."
|
|
mv TARGETS.bkp TARGETS
|
|
exit 1
|
|
fi
|
|
|