Skip to content

Commit

Permalink
Fix Olympus not starting up on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
maddie480 committed Sep 24, 2023
1 parent 5b03d3d commit 398a136
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 1 addition & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ and only contains the latest changes.
Its purpose is to be shown in Olympus when updating.

#changelog#
∙ Fixed a crash at the end of mod updating if "Retry" has been used at least once
∙ Make sure Lönn is run with the same Love2d install as Olympus itself on Linux
∙ Fixed Olympus not starting up on Linux if installed using the previous stable
4 changes: 1 addition & 3 deletions find-love.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
# This script's working directory must be the bundled love's one and it'll set
# everything up by itself

BUN_LOVE_DIR="$(pwd)/love"

# Order priority goes as follows:
# 1. love if its not too old, if too old or missing then
# 2. bundled love, if missing then
Expand Down Expand Up @@ -41,7 +39,7 @@ fi
if [ -f "love" ]; then
echo "Using bundled love"
cd $(dirname $1)
"$BUN_LOVE_DIR"/love --fused $@
./love --fused $@
elif command -v love >/dev/null 2>&1; then # We know it is old, but go for it anyway
echo "Using oudated system wide love installation"
cd $(dirname $1)
Expand Down

0 comments on commit 398a136

Please sign in to comment.