diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2007-11-05 16:25:21 -0500 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2007-11-05 16:25:21 -0500 |
commit | 357a708e613c83ae35faaa70514a8f4e1179079b (patch) | |
tree | a7687c896efe9b01a473705faa24afd8d004dbdb /pre-commit.d/10warn-hardlinks | |
parent | ab6f7188c53c6580c64702e1cebb5326e998e225 (diff) |
implemented pre-apt checks
other development too..
Diffstat (limited to 'pre-commit.d/10warn-hardlinks')
-rwxr-xr-x | pre-commit.d/10warn-hardlinks | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pre-commit.d/10warn-hardlinks b/pre-commit.d/10warn-hardlinks index f449fed..29f007b 100755 --- a/pre-commit.d/10warn-hardlinks +++ b/pre-commit.d/10warn-hardlinks @@ -2,6 +2,6 @@ set -e hardlinks=$(find -type f -not -links 1 | grep -v /.git/) if [ -n "$hardlinks" ]; then - echo "warning: hardlinked files could cause problems with git:" >&2 + echo "etckeeper warning: hardlinked files could cause problems with git:" >&2 echo "$hardlinks" >&2 fi |