From 8ecb800d0f4a150652b02a255a585e5dcab25301 Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Tue, 11 Jun 2024 13:37:29 -0400 Subject: [PATCH] fix(rubygems) closes #6256 --- projects/rubygems.org/package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/rubygems.org/package.yml b/projects/rubygems.org/package.yml index 8a8fd69f..59c18049 100644 --- a/projects/rubygems.org/package.yml +++ b/projects/rubygems.org/package.yml @@ -89,7 +89,7 @@ build: # these are provided by ruby-lang.org # they turn up here since that is how gem handles deps # 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 # ruby has a neat feature where it will look for a ruby shebang and