mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
7 lines
210 B
Text
7 lines
210 B
Text
|
#!/bin/bash
|
||
|
exec 2> >(exec grep -v \
|
||
|
-e '^ld: warning: The [a-z0-9_][a-z0-9_]* architecture is deprecated for macOS' \
|
||
|
-e '^ld: warning: text-based stub file /System/Library/Frameworks/' \
|
||
|
>&2)
|
||
|
exec "$@"
|