Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if [ ! -f "./Peacock/chunk0.js" ]; then

info_message "Grabbing Peacock"

curl -sSLJO -H "Accept: application/octet-stream" "https://github.com/thepeacockproject/Peacock/releases/download/${LATEST_RELEASE}/${FILE_NAME}" &&
wget "https://github.com/thepeacockproject/Peacock/releases/download/${LATEST_RELEASE}/${FILE_NAME}" &&
unzip -q ${FILE_NAME} &&
rm ${FILE_NAME} &&
mv ${FOLDER_NAME} Peacock
Expand Down Expand Up @@ -85,7 +85,7 @@ if ! command -v node &>/dev/null && [ ! -d "./node" ]; then

# Install node
mkdir node
curl -sS $node_url | tar --strip-components=1 -C node -zxf -
wget $node_url && tar --strip-components=1 -C node -xf ./node-*.tar.gz

if [ $? -eq 0 ]; then
success_message "Installed Node.js"
Expand Down