1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix typo in debugged C source name

I failed to collect any debug info in
https://app.wercker.com/ruby/ruby/runs/mjit-test1/5cda57fcab79a30008f195f6?step=5cda6a4e1090c4000800772e

It seems that it's due to this typo.
This commit is contained in:
Takashi Kokubun 2019-05-14 16:45:18 +09:00
parent c754e979d3
commit 4fe0961dca
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD

View file

@ -29,7 +29,7 @@ mjit-test1:
cat <<'EOS' > /usr/local/bin/mjit-debug-on-fail
#!/bin/bash
if ! "$@"; then
for f in $(find /tmp -type f -name "ruby_mjit*.c"); do
for f in $(find /tmp -type f -name "_ruby_mjit*.c"); do
echo "[${f}]==="
cat "$f"
echo "==="