[commit: ghc] master: Fix âChecking for old .. repoâ messages (bcccadd)
git at git.haskell.org
git at git.haskell.org
Thu Jun 26 02:54:49 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/bcccadd9719d89c1e51619bc01c3d655ddf0e5f1/ghc
>---------------------------------------------------------------
commit bcccadd9719d89c1e51619bc01c3d655ddf0e5f1
Author: Joachim Breitner <mail at joachim-breitner.de>
Date: Wed Jun 25 19:44:18 2014 -0700
Fix “Checking for old .. repo” messages
>---------------------------------------------------------------
bcccadd9719d89c1e51619bc01c3d655ddf0e5f1
sync-all | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sync-all b/sync-all
index 517d4ff..355e16a 100755
--- a/sync-all
+++ b/sync-all
@@ -943,8 +943,8 @@ END {
["libraries/Cabal", "c8ebd66a32865f72ae03ee0663c62df3d77f08fe"],
);
for (@obsolete_dirs) {
- my ($dir, $hash) = $_;
- my $name = $dir =~ m!/([^/]+)$!;
+ my ($dir, $hash) = @$_;
+ my ($name) = $dir =~ m!/([^/]+)$!;
message "== Checking for old $name repo";
if (-d "$dir/.git") {
chdir($dir);
More information about the ghc-commits
mailing list