mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Escape $@ in mjit-debug-on-fail
This commit is contained in:
parent
e8e415b534
commit
a1bab3d1a3
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ mjit-test1:
|
|||
code: |
|
||||
cat <<'EOS' > /usr/local/bin/mjit-debug-on-fail
|
||||
#!/bin/bash
|
||||
if ! $@; then
|
||||
if ! "$@"; then
|
||||
for f in $(find /tmp -type f -name "ruby_mjit*.c"); do
|
||||
echo "[${f}]==="
|
||||
cat "$f"
|
||||
|
|
Loading…
Reference in a new issue