From 209f1da1f4b13941e75a41e1091e79bdda4c4f56 Mon Sep 17 00:00:00 2001 From: Greg Brockman Date: Sun, 11 Jul 2010 18:34:24 -0400 Subject: [PATCH] Don't put globs in quotes --- debian/changelog | 1 + invirt-configure-git-hooks | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 6185ed5..e6c69d0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ invirt-dev (0.1.2) unstable; urgency=low * Corrected required version of git-core dependency + * Don't put globs in quotes -- Greg Brockman Sun, 11 Jul 2010 17:58:36 -0400 diff --git a/invirt-configure-git-hooks b/invirt-configure-git-hooks index bed41b5..37e3ed4 100755 --- a/invirt-configure-git-hooks +++ b/invirt-configure-git-hooks @@ -15,7 +15,7 @@ link_to "$package_base/packages.git/hooks" "$hook_base/super" for pkg in "$package_base"/*/*.git; do case "$pkg" in - "$package_base/packages/*.git") link_to "$pkg/hooks" "$hook_base/sub" ;; + "$package_base"/packages/*.git) link_to "$pkg/hooks" "$hook_base/sub" ;; *) link_to "$pkg/hooks" "$hook_base/other" ;; esac done -- 1.7.9.5