Skip to content

Commit

Permalink
chore: fix installation script
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrBox committed Jul 15, 2023
1 parent c96a2d8 commit 6526f84
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions scripts/install.sh
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
#!/bin/bash
lip_version=0.14.0
lip_version=0.14.2

# Install Lip
wget https://github.com/LiteLDev/Lip/releases/download/v${lip_version}/lip-${lip_version}-linux-amd64.tar.gz
tar -xvf lip-${lip_version}-linux-amd64.tar.gz
chmod +x lip-${lip_version}-linux-amd64/lip
wget https://github.com/LipPkg/Lip/releases/download/v${lip_version}/lip-linux-amd64.tar.gz
mkdir lip
tar -xvf lip-linux-amd64.tar.gz -C lip
chmod +x lip/lip

# Install BDS
mkdir bedrock_server
cd bedrock_server
./../lip-${lip_version}-linux-amd64/lip install -y bds
./../lip/lip install -y bds

# Install LiteLoaderBDS
./../lip-${lip_version}-linux-amd64/lip install ll
./../lip/lip install ll
WINEDEBUG=-all wine LLPeEditor.exe

echo Done!

0 comments on commit 6526f84

Please sign in to comment.