You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Awesome tool, absolutely love the simplicity and I have been looking for a similar project for a while.
There seems to be Ruby version related bug where ruby does not load StringIO by default after ruby version 2.7.0 (found a similar issue on unrelated codebase ohler55/agoo#80)
When running this tool in a Alpine Docker container with ruby version 3.3.0 I get the following error:
[SSHKit::Runner::ExecuteError] Exception while executing as [email protected]: uninitialized constant Consist::Commands::Upload::StringIO
This is solved by adding a
require "stringio"
into the lib/consist/commands/upload.rb file.
The text was updated successfully, but these errors were encountered:
Hi!
Awesome tool, absolutely love the simplicity and I have been looking for a similar project for a while.
There seems to be Ruby version related bug where ruby does not load
StringIO
by default after ruby version 2.7.0 (found a similar issue on unrelated codebase ohler55/agoo#80)When running this tool in a Alpine Docker container with ruby version 3.3.0 I get the following error:
This is solved by adding a
into the
lib/consist/commands/upload.rb
file.The text was updated successfully, but these errors were encountered: