Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorBalasankar "Balu" C <balasankar@gitlab.com>2019-08-13 08:42:26 +0300
committerBalasankar "Balu" C <balasankar@gitlab.com>2019-08-13 11:58:54 +0300
commit9ab5346eeb7c1891a6828386334fa3e6b853a931 (patch)
tree1f24b0f51ace46efc8e3d325517bb1c6d308627b /bin
parent943dbeffab397e20a748ff4f91922b79a7f29598 (diff)
Ensure changelog filenames are less than 99 characters long
Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/changelog2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/changelog b/bin/changelog
index 328d9495b96..ec068d06507 100755
--- a/bin/changelog
+++ b/bin/changelog
@@ -23,7 +23,7 @@ module ChangelogHelpers
Abort = Class.new(StandardError)
Done = Class.new(StandardError)
- MAX_FILENAME_LENGTH = 140 # ecryptfs has a limit of 140 characters
+ MAX_FILENAME_LENGTH = 99 # GNU tar has a 99 character limit
def capture_stdout(cmd)
output = IO.popen(cmd, &:read)