From 79613d80ada2910816424e2765f2897abaf4a597 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Wed, 2 Sep 2015 11:56:22 -0700 Subject: [PATCH] Update length limit to 25k See https://github.com/docker/hub-beta-feedback/issues/238#issuecomment-137202994 --- push.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/push.pl b/push.pl index 42c724f42..c3f8d463b 100755 --- a/push.pl +++ b/push.pl @@ -13,7 +13,7 @@ use Mojo::Util qw(decode encode slurp spurt trim); use Term::UI; use Term::ReadLine; -my $hubLengthLimit = 5000; +my $hubLengthLimit = 25_000; my $githubBase = 'https://github.com/docker-library/docs/tree/master'; my $username;