diff options
Diffstat (limited to 'common')
-rw-r--r-- | common | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -14,19 +14,19 @@ keys=( 'REV' ) -find_vcs() { +find_vcfs() { { find "${git_dir}" \ -name '.git' \ -prune \ , \ -type f \ - -name '*.vcs' \ + -name '*.vcf' \ -printf '%p\n' git -C "${git_dir}" archive HEAD \ | tar -t \ | sed ' - /\.vcs$/!d + /\.vcf$/!d s@^@'"${git_dir%/}"'/@ ' } \ |