]> Sergey Matveev's repositories - public-inbox.git/blobdiff - script/public-inbox-init
treewide: shorten temporary filename
[public-inbox.git] / script / public-inbox-init
index e93cab730d209442fd05176b4555e4f2e0d9c8eb..335eb476baa16ffa613f0e8853387eb0ab5f7bb5 100755 (executable)
@@ -79,7 +79,7 @@ PublicInbox::Lock::lock_acquire($lock_obj);
 
 # git-config will operate on this (and rename on success):
 require File::Temp;
-my $fh = File::Temp->new(TEMPLATE => 'pi-init-XXXXXXXX', DIR => $dir);
+my $fh = File::Temp->new(TEMPLATE => 'pi-init-XXXX', DIR => $dir);
 
 # Now, we grab another lock to use git-config(1) locking, so it won't
 # wait on the lock, unlike some of our internal flock()-based locks.