diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-03-11 15:09:44 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-03-11 15:09:44 -0400 |
commit | d282c8c9890266584a43bcd8ca1551e91bf97dc3 (patch) | |
tree | 41eead480f003bfd8b5d2726789df501ccd524d2 | |
parent | c7efb544a4c49e3c699a22e2b66aab759a974a92 (diff) |
fix horrible typo in patch
-rwxr-xr-x | pre-commit.d/30store-metadata | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pre-commit.d/30store-metadata b/pre-commit.d/30store-metadata index 7a75344..86e974c 100755 --- a/pre-commit.d/30store-metadata +++ b/pre-commit.d/30store-metadata @@ -1,7 +1,7 @@ #!/bin/sh set -e -if [ "$VCS" = git ] || [ "$VCS" = hg ] || [ "$VCS" = bzr ]; then; then +if [ "$VCS" = git ] || [ "$VCS" = hg ] || [ "$VCS" = bzr ]; then # Make sure the file is not readable by others, since it can leak # information about contents of non-readable directories in /etc. umask 077 |