-
Notifications
You must be signed in to change notification settings - Fork 125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiline String Parameter Turkish Character Problem #270
Comments
example : İ Ö Ç Ş Ğ -> ? ? |
Thank for report. I look at this next week after easter holiday. I have an idea what the problem is. I try to fix this then. I currently plan to push a new version (eap) next week with some change. Maybe this is fixed In your example ther are only two questions mark for five charcters? |
First of all, thank you for your interest. Instead of any turkish character in a paragraph? is printing the mark. For example instead of ISTANBUL like? STANBUL |
Thank for clarification. |
@urunsal Sorry for the the question. But i not know the turkish alphabet :)
I've tried this and it works in my environment. Could you please provide more turkish written words so I can test it |
I test following simple pieline: pipeline {
agent any
parameters {
choice choices: ['ISTANBUL', 'İstanbul', 'İ Ö Ç Ş Ğ', 'TURKEY'], name: 'Choice'
string 'Text'
text description: '''İ Ö Ç Ş Ğ İstanbul''', name: 'Multiline'
}
stages {
stage('Params') {
steps {
echo "Choice: $params.Choice"
echo "Text: $params.Text"
echo "Multiline: $params.Multiline"
}
}
}
} |
Colud you please try following EAP Build? I will test it more this week |
released with 0.13.11 |
We have a Turkish character problem in Multiline Strin Parameter. Could you please help me?
For example, the letter I or the letter S is written as a question mark instead.
Thanks.
The text was updated successfully, but these errors were encountered: