From eceaaf360b9847f571894b6c6a5858c4b5c04a79 Mon Sep 17 00:00:00 2001 From: JaeSang Yoo Date: Wed, 18 Mar 2020 12:50:39 +0900 Subject: [PATCH] Problem: executable sources are not tracked Solution: Fix .gitignore's exceptions for sources in tools/ --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6827782e..f7442d9d 100644 --- a/.gitignore +++ b/.gitignore @@ -65,8 +65,8 @@ src/libzmq.pc ## Executable binaries are ignored tools/curve_keygen ## Executable source files must be tracked -tools/*.[ch] -tools/*.[ch]pp +!tools/*.[ch] +!tools/*.[ch]pp # /tests ## Test binaries and logs are ignored