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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAhmad Sherif <me@ahmadsherif.com>2017-12-20 17:28:26 +0300
committerAhmad Sherif <me@ahmadsherif.com>2017-12-20 17:28:40 +0300
commit4afb5e6a10adb98594a4dbc7fe810770068eaf4f (patch)
tree2ad0d231a242e611e9f5b1faeced62f03edfe77f
parentea128f364a49495bf6adb65b0b13076edea2357b (diff)
Strip whitespaces from AT generator inputfix/strip-a-t-issue-gen-input
-rwxr-xr-x_support/generate-acceptance-testing-issue2
1 files changed, 1 insertions, 1 deletions
diff --git a/_support/generate-acceptance-testing-issue b/_support/generate-acceptance-testing-issue
index 89d6b85df..58cfe1408 100755
--- a/_support/generate-acceptance-testing-issue
+++ b/_support/generate-acceptance-testing-issue
@@ -26,7 +26,7 @@ end.parse!
def prompt(text)
puts text
- gets
+ gets.strip
end
template_file = File.join(File.dirname(__FILE__), "..", ".gitlab", "issue_templates", "Migration_Acceptance_Testing.md")