From 0667b44461cca955d523d0739d288040803b1e6b Mon Sep 17 00:00:00 2001 From: LudovicTOURMAN <30794632+LudovicTOURMAN@users.noreply.github.com> Date: Wed, 14 Oct 2020 23:17:18 +0200 Subject: [PATCH] Fix shell variables Fix shell variables that where style "windows styled" --- linux/mc_start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/mc_start.sh b/linux/mc_start.sh index 70b721e..cd31764 100755 --- a/linux/mc_start.sh +++ b/linux/mc_start.sh @@ -6,7 +6,7 @@ MC_DIR=~/.minecraft # Are stored here... # saves/, resourcepacks/ and screenshots/ dirs # and options.txt and servers.dat files -GAME_DIR=%MC_DIR +GAME_DIR=$MC_DIR # Assets location ASSETS_DIR=$MC_DIR/assets @@ -38,7 +38,7 @@ net.minecraft.client.main.Main \ --username $PLAYER_NAME \ --version $GAME_VERSION \ --accessToken 0 --userProperties {} \ ---gameDir %GAME_DIR% \ +--gameDir $GAME_DIR \ --assetsDir $ASSETS_DIR \ --assetIndex $ASSETS_INDEX \ --width $WINDOW_W --height $WINDOW_H