diff options
author | Damjan Marion <damarion@cisco.com> | 2017-04-20 11:42:28 +0200 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-04-24 14:49:00 +0000 |
commit | 757585db71b78c4edf91ba011be419264de43d1a (patch) | |
tree | d12a78253ba81a0feab0c40dcae2aefc13438873 /build-root/scripts | |
parent | 53129423a6f4e43b39f7547424fbaea99e56f7e2 (diff) |
Move emacs stuff to extras/
Change-Id: Ibbb7d8500e9064215cf912bd00bdf72a748f8a27
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'build-root/scripts')
-rwxr-xr-x | build-root/scripts/checkstyle.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-root/scripts/checkstyle.sh b/build-root/scripts/checkstyle.sh index 60129676a2e..55fe4ab53ae 100755 --- a/build-root/scripts/checkstyle.sh +++ b/build-root/scripts/checkstyle.sh @@ -40,7 +40,7 @@ indent --version cd ${VPP_DIR} git status for i in ${FILELIST}; do - if [ -f ${i} ] && [ ${i} != "build-root/scripts/checkstyle.sh" ] && [ ${i} != "build-root/emacs-lisp/fix-coding-style.el" ]; then + if [ -f ${i} ] && [ ${i} != "build-root/scripts/checkstyle.sh" ] && [ ${i} != "extras/emacs/fix-coding-style.el" ]; then grep -q "fd.io coding-style-patch-verification: ON" ${i} if [ $? == 0 ]; then CHECKSTYLED_FILES="${CHECKSTYLED_FILES} ${i}" |