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
2 changes: 1 addition & 1 deletion tests/setup_script.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

sudo apt update -y && sudo apt install -y curl
apt update -y && sudo apt install -y curl

@Sjors Sjors Jul 30, 2025

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems strange that only the sudo for apt update isn't needed. At least on my desktop Ubuntu it is needed generally.

If you're root than of course none of the sudo's are needed.

curl -o /tmp/bitcoin.tar.gz https://bitcoincore.org/bin/bitcoin-core-26.0/bitcoin-26.0-x86_64-linux-gnu.tar.gz && \
sudo tar -xf /tmp/bitcoin.tar.gz -C / && \
sudo mv /bitcoin-26.0 /bitcoin
Expand Down
Loading