diff --git a/Runtimes/NET/BepisLoader/LinuxBootstrap.sh b/Runtimes/NET/BepisLoader/LinuxBootstrap.sh index 8cb9fe2b..584aa782 100755 --- a/Runtimes/NET/BepisLoader/LinuxBootstrap.sh +++ b/Runtimes/NET/BepisLoader/LinuxBootstrap.sh @@ -3,7 +3,7 @@ # This is a bootstrapper to run Resonite in what is quite the unorthodox # configuration on Linux. # -# This script is executed by the "ResoBoot" bootstrapper if ResoBoot +# This script is executed by the "Renderite.Boot" bootstrapper if it # detects it's running under Proton/Wine. # # The following shell code is responsible for installing an adequate runtime @@ -27,7 +27,6 @@ PATH="$PATH":"$DOTNET_ROOT":"$DOTNET_ROOT"/tools DOTNET_INSTALL_SCRIPT="$PWD/dotnet-install.sh" DOTNET_EXECUTABLE="$DOTNET_ROOT/dotnet" -RENDERER_SCRIPT="Renderer/Renderite.Renderer.sh" # terminal_execute() # { @@ -65,13 +64,6 @@ main() chmod +x "$DOTNET_INSTALL_SCRIPT" - - # Also make sure that the alternate Renderite script is executable as well - # so that Resonite can run it. - - chmod +x "$RENDERER_SCRIPT" - - # Install .NET 10 into the current directory bash "$DOTNET_INSTALL_SCRIPT" --verbose --channel 10.0 --runtime dotnet --install-dir "$DOTNET_ROOT"