fix(rubygems)

closes #6256
This commit is contained in:
Jacob Heider 2024-06-11 13:37:29 -04:00 committed by Jacob Heider
parent f71bcbcaed
commit 8ecb800d0f

View file

@ -89,7 +89,7 @@ build:
# these are provided by ruby-lang.org # these are provided by ruby-lang.org
# they turn up here since that is how gem handles deps # they turn up here since that is how gem handles deps
# but ruby is in PATH and has these and that is the preference # but ruby is in PATH and has these and that is the preference
- run: rm rake rbs rdbg typeprof - run: for PROG in rake rbs rdbg typeprof; do if test -f $PROG; then rm $PROG; fi; done
working-directory: ${{prefix}}/bin working-directory: ${{prefix}}/bin
# ruby has a neat feature where it will look for a ruby shebang and # ruby has a neat feature where it will look for a ruby shebang and