Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions Runtimes/NET/BepisLoader/LinuxBootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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()
# {
Expand Down Expand Up @@ -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"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why remove this? did it cause issues? if not I think we should keep it

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cuz they got rid of Renderite.Renderer.sh I think

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm ok sure, idk if it was ever there to begin with, but whatever



# Install .NET 10 into the current directory

bash "$DOTNET_INSTALL_SCRIPT" --verbose --channel 10.0 --runtime dotnet --install-dir "$DOTNET_ROOT"
Expand Down
Loading