diff options
author | John Chen (CLR) <jochen@microsoft.com> | 2016-02-24 14:31:38 -0800 |
---|---|---|
committer | John Chen (CLR) <jochen@microsoft.com> | 2016-02-24 14:31:38 -0800 |
commit | 681487583f1b69ed1015faafe2e168b980b4487d (patch) | |
tree | 15bb578aeb27f476f3e5ecc1dccaae11ede71cf6 | |
parent | 0d88461f079c94cce1dbfc005b41d88cf0bc124c (diff) | |
download | coreclr-681487583f1b69ed1015faafe2e168b980b4487d.tar.gz coreclr-681487583f1b69ed1015faafe2e168b980b4487d.tar.bz2 coreclr-681487583f1b69ed1015faafe2e168b980b4487d.zip |
Fix .gitignore so src/tools is not ignored
Commit 3079b40 modified .gitignore to ignore top-level Tools directory.
However the change was too broad and caused src/tools to be ignored as well.
This commit fixes it.
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 65937db30f..733216bb1d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,7 @@ syntax: glob [Bb]inaries/ # Build tools related files -[Tt]ools/ +/[Tt]ools/ ### VisualStudio ### |