Skip to content

Commit d231577

Browse files
Simplify download command in installation guide
Updated installation instructions to simplify the download command for Blueprint's latest release.
1 parent f4312e3 commit d231577

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/frontend/content/guides/admin/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ Download the latest version of Blueprint onto your server by either downloading
2323

2424
```bash
2525
# Install curl, wget and unzip if you haven't already
26-
sudo apt install -y curl wget unzip jq
26+
sudo apt install -y curl wget unzip
2727

2828
# Navigate to your Pterodactyl directory
2929
cd $PTERODACTYL_DIRECTORY
3030

3131
# Download and unzip Blueprint's latest release
32-
curl -s https://api.github.com/repos/BlueprintFramework/framework/releases/latest \ | jq -r '.assets[] | select(.name=="release.zip") | .browser_download_url' \ | sudo wget -q -O "$PTERODACTYL_DIRECTORY/release.zip" -i -
32+
sudo wget "$(curl -s https://api.github.com/repos/BlueprintFramework/framework/releases/latest | grep 'browser_download_url' | grep 'release.zip' | cut -d '"' -f 4)" -O "$PTERODACTYL_DIRECTORY/release.zip"
3333
unzip -o release.zip
3434
```
3535

0 commit comments

Comments
 (0)