blob: a01e49380f35e7c5815d1c923eb5f4215510b9ac (
plain)
1
2
3
4
5
6
7
8
9
10
|
# install to final destination in /usr and not into /opt/ruby-xxx
eval "$(
declare -f package | \
sed '
s|local _gemdir.*|local _gemdir="/usr/lib/ruby/gems/3.0.0"|g
'
)"
# disable tests during bootstrapping
unset check
|