We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following error is sometimes returned and the tool crash:
private method 'chomp' called for nil:NilClass (NoMethodError)
This is triggered by this line:
svn2git/lib/svn2git/migration.rb
Line 405 in 6dac85a
gets may return a string or nil according to the documentation: https://ruby-doc.org/core-3.1.1/Kernel.html#method-i-gets nil does not have a chomp method and trigger the error (with a crash).
gets
string
nil
chomp
The text was updated successfully, but these errors were encountered:
Close nirvdrum#284, nirvdrum#307; supersede nirvdrum#285, nirvdrum#278,
6267250
nirvdrum#308 The proper way to do subprocess I/O is to do less.
No branches or pull requests
What happend
The following error is sometimes returned and the tool crash:
Why
This is triggered by this line:
svn2git/lib/svn2git/migration.rb
Line 405 in 6dac85a
gets
may return astring
ornil
according to the documentation: https://ruby-doc.org/core-3.1.1/Kernel.html#method-i-getsnil
does not have achomp
method and trigger the error (with a crash).The text was updated successfully, but these errors were encountered: