Skip to content

Commit

Permalink
Delete option instead of forcing it to false
Browse files Browse the repository at this point in the history
CI Complains: "ConanException: Incorrect attempt to modify option 'with_readline' from 'True' to 'False'"
  • Loading branch information
jmarrec committed Dec 15, 2023
1 parent 7ef9d59 commit 67ca60d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/ruby/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def configure(self):

if self.settings.os == 'Windows':
# readline isn't supported on Windows
self.options.with_readline = False
del self.options.with_readline

def requirements(self):
self.requires("zlib/1.2.12")
Expand Down

0 comments on commit 67ca60d

Please sign in to comment.