Fix/test old bash (#216)

* test(old-bash): use tmux instead of mocking it

* quote output
This commit is contained in:
vdbe 2024-05-12 16:34:44 +00:00 committed by GitHub
parent c056412238
commit 697087f593
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 7 deletions

View file

@ -59,7 +59,7 @@ main() {
exit 1
else
echo "Running plugin: $plugin" >&2
output=$(tmux run-shell "$plugin" 2>&1)
output="$(tmux run-shell "$plugin" 2>&1)"
exit_code="$?"
check "$exit_code" "$output"