mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-09-02 07:11:12 +02:00
Don't delete jruby.sh
I'm not sure why this file was being deleted but this code dates way back! Unfortunately deleting this interferes with a new version of the native JRuby launcher we want to release which is dependent on the shell script being present. This PR removes jruby.sh from the `remove_windows_files` function so it can be used by the new launcher. See https://github.com/jruby/jruby-launcher/pull/48#issuecomment-2772272290
This commit is contained in:
parent
2334633d60
commit
f661b64cab
1 changed files with 1 additions and 1 deletions
|
@ -935,7 +935,7 @@ build_package_artichoke() {
|
|||
remove_windows_files() {
|
||||
# shellcheck disable=SC2164
|
||||
cd "$PREFIX_PATH"
|
||||
rm -f bin/*.exe bin/*.dll bin/*.bat bin/jruby.sh
|
||||
rm -f bin/*.exe bin/*.dll bin/*.bat
|
||||
}
|
||||
|
||||
clean_prefix_path_truffleruby() {
|
||||
|
|
Loading…
Reference in a new issue