diff --git a/cibuildwheel/bashlex_eval.py b/cibuildwheel/bashlex_eval.py index b5e478c8..4cc9c053 100644 --- a/cibuildwheel/bashlex_eval.py +++ b/cibuildwheel/bashlex_eval.py @@ -69,6 +69,8 @@ def evaluate_word_node(node: bashlex.ast.node, context: NodeExecutionContext) -> # remove the None letters and concat value = ''.join(letters) + print('node value:', value) + # apply bash-like quotes/whitespace treatment return ' '.join(word.strip() for word in shlex.split(value))