File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
apps/frontend/content/guides/admin Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
2929cd $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"
3333unzip -o release.zip
3434```
3535
You can’t perform that action at this time.
0 commit comments