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 27257c2
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions scripts/install.sh
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
#!/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
# Install LiteLoaderBDS
mkdir bedrock_server
cd bedrock_server
./../lip-${lip_version}-linux-amd64/lip install -y bds

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

echo Done!

0 comments on commit 27257c2

Please sign in to comment.