]> git.madduck.net Git - code/vcsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Merge branch 'feature/reproducible_build'
authorRichard Hartmann <richih@debian.org>
Tue, 29 Dec 2015 16:34:12 +0000 (17:34 +0100)
committerRichard Hartmann <richih@debian.org>
Tue, 29 Dec 2015 16:34:12 +0000 (17:34 +0100)
t/100-init.t

index 80a10c9e6469c1f57cb90c758e5364ee9d51ccea..74facc02655ba9db6b733c754d6685b61d43813d 100644 (file)
@@ -1,5 +1,7 @@
 #!/usr/bin/perl
 
+BEGIN { $ENV{LC_ALL} = 'C' }
+
 use strict;
 use warnings;
 
@@ -14,7 +16,7 @@ my $output = `./vcsh status`;
 
 ok $output eq "", 'No repos set up yet.';
 
-$output = `LC_ALL=C ./vcsh init test1`;
+$output = `./vcsh init test1`;
 
 ok $output eq "Initialized empty shared Git repository in " . $ENV{'HOME'} . "/.config/vcsh/repo.d/test1.git/\n";