mirror of
https://github.com/apache/impala.git
synced 2026-01-07 09:02:19 -05:00
10 lines
235 B
Bash
Executable File
10 lines
235 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2011 Cloudera, Inc. All rights reserved.
|
|
|
|
bin=`dirname "$0"`
|
|
bin=`cd "$bin"; pwd`
|
|
. "$bin"/impala-config.sh
|
|
|
|
files=`find $IMPALA_BE_DIR/src -regex '.*\(cc\|h\)' -printf '%p '`
|
|
cpplint.py $@ ${files}
|