diff options
author | Guido Guenther <agx@sigxcpu.org> | 2006-12-21 11:41:52 +0100 |
---|---|---|
committer | Guido Guenther <agx@bogon.sigxcpu.org> | 2006-12-21 11:41:52 +0100 |
commit | 06e6289f643a7c71956b36d5cd253d2e86c9f292 (patch) | |
tree | 2974595f46cb0892fd427d3334383155bfa7d442 | |
parent | 1a01b38ee1bd96b4c2452494ff68e1b8bb2609f1 (diff) | |
download | git-buildpackage-06e6289f643a7c71956b36d5cd253d2e86c9f292.tar.gz git-buildpackage-06e6289f643a7c71956b36d5cd253d2e86c9f292.tar.bz2 git-buildpackage-06e6289f643a7c71956b36d5cd253d2e86c9f292.zip |
make exclusion regexp more specific
-rwxr-xr-x | git-buildpackage | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-buildpackage b/git-buildpackage index a3188325..95a9491c 100755 --- a/git-buildpackage +++ b/git-buildpackage @@ -101,7 +101,7 @@ def main(argv): if not create_orig(cp, output_dir, options.upstream_branch): return 1 - Command(options.build_cmd, [ '-i.git', '-I.git' ] + dpkg_args)() + Command(options.build_cmd, [ '-i\.git/', '-I\.git/' ] + dpkg_args)() if options.tag: try: version=cp['Version'] |