diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2013-09-05 15:06:15 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2013-09-05 15:06:15 -0600 |
commit | 7386f6df575987b11dc570c2de44e9dabac82ba5 (patch) | |
tree | 7501a7ae6add456d44450e835431fb5677049180 /.gitignore | |
parent | b5dab6df0c9feef2d0b10ea7c56abd0b1df78abc (diff) | |
download | numpy-7386f6df575987b11dc570c2de44e9dabac82ba5.tar.gz |
BUG: .gitignore ignores all release directories.
It should only ignore the one in the root directory. The fix is to
prepend a '/' to the directory name.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 8585f3096..a98742ffe 100644 --- a/.gitignore +++ b/.gitignore @@ -62,7 +62,7 @@ MANIFEST # Paver generated files # ######################### -release/ +/release # Logs and databases # ###################### |