We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc75db7 commit 6986902Copy full SHA for 6986902
Docker/start-latest.sh
@@ -3,10 +3,10 @@
3
cd /opt/data || exit 1
4
5
# Get latest release tag
6
-RELEASE_TAG=$(curl -s -v https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest 2>&1 | grep -i location: | cut -d/ -f8)
+RELEASE_TAG=$(curl -s -v https://github.com/MCCTeam/Minecraft-Console-Client/releases/latest 2>&1 | grep -i location: | tr -d '\r' | cut -d/ -f8)
7
8
# Download latest version
9
curl -L https://github.com/MCCTeam/Minecraft-Console-Client/releases/download/${RELEASE_TAG}/MinecraftClient.exe --output MinecraftClient.exe
10
11
# Start Client
12
-mono MinecraftClient.exe
+mono MinecraftClient.exe
0 commit comments