From a6ccc2dd9cdd5dd74f7723b27a30497e81cf5b01 Mon Sep 17 00:00:00 2001 From: Sudeep Sunthankar Date: Thu, 5 Jan 2017 18:17:52 +1100 Subject: [PATCH] Removed an extra '=' sign because of which formatting to sources were not being applied. diff --git a/hbase-native-client/bin/format-code.sh b/hbase-native-client/bin/format-code.sh index 6796acd..8a19930 100755 --- a/hbase-native-client/bin/format-code.sh +++ b/hbase-native-client/bin/format-code.sh @@ -19,5 +19,5 @@ set -euo pipefail IFS=$'\n\t' -find core connection serde utils test-util security -name "*.h" -or -name "*.cc" | xargs -P8 clang-format -i --style=='{BasedOnStyle: Google, ColumnLimit: 100}' +find core connection serde utils test-util security -name "*.h" -or -name "*.cc" | xargs -P8 clang-format -i --style='{BasedOnStyle: Google, ColumnLimit: 100}' find core connection serde utils third-party security -name "BUCK" | xargs -P8 yapf -i --style=google -- 1.8.3.1