From dc446d3cac4d8ca49cb2b010ce686aa346145c79 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sun, 12 Jul 2020 12:45:59 +0100 Subject: [PATCH] moar debug --- cibuildwheel/bashlex_eval.py | 2 ++ 1 file changed, 2 insertions(+) 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))