summaryrefslogtreecommitdiff
path: root/wercker.yml
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2019-05-14 16:45:18 +0900
committerTakashi Kokubun <takashikkbn@gmail.com>2019-05-14 16:45:19 +0900
commit4fe0961dca71406816e136a76f742adb1f0b9bb5 (patch)
tree5250bfa56915a897118a07e39a7828f5651dab0e /wercker.yml
parentc754e979d3eeca51f1b13778f19f347df3da656e (diff)
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.
Diffstat (limited to 'wercker.yml')
-rw-r--r--wercker.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/wercker.yml b/wercker.yml
index 2736e2c113..7e3d47a2b3 100644
--- a/wercker.yml
+++ b/wercker.yml
@@ -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 "==="