summaryrefslogtreecommitdiff
path: root/scripts/docs_screenshots.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-10-21 07:08:36 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-10-21 07:08:36 +0000
commit48aff82709769b098321c738f3444b9bdaa694c6 (patch)
treee00c7c43e2d9b603a5a6af576b1685e400410dee /scripts/docs_screenshots.rb
parent879f5329ee916a948223f8f43d77fba4da6cd028 (diff)
downloadgitlab-ce-48aff82709769b098321c738f3444b9bdaa694c6.tar.gz
Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42
Diffstat (limited to 'scripts/docs_screenshots.rb')
-rwxr-xr-xscripts/docs_screenshots.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/docs_screenshots.rb b/scripts/docs_screenshots.rb
index e02d67de748..7472d9ea37b 100755
--- a/scripts/docs_screenshots.rb
+++ b/scripts/docs_screenshots.rb
@@ -22,7 +22,7 @@ end
def rename_image(file, milestone)
path = File.dirname(file)
- basename = File.basename(file)
+ basename = File.basename(file, ".*")
final_name = File.join(path, "#{basename}_v#{milestone}.png")
FileUtils.mv(file, final_name)
end