We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ec9abe commit 5e9262bCopy full SHA for 5e9262b
installer/pi-download-image.sh
@@ -3,13 +3,13 @@ set -e
3
mkdir data
4
# 25.04 is not yet ready due to mt7915e, r8125 driver bugs
5
VERSION="24.04.3"
6
-IMG="ubuntu-{$VERSION}-preinstalled-server-arm64+raspi.img.xz"
+IMG="ubuntu-${VERSION}-preinstalled-server-arm64+raspi.img.xz"
7
8
cd ./data
9
10
if [ ! -f $IMG ]; then
11
#temp until 25.04 fixes drivers for r8125, mt7915
12
- wget -q "https://cdimage.ubuntu.com/releases/${VERSION}/release/${IMG}
+ wget "https://cdimage.ubuntu.com/releases/${VERSION}/release/${IMG}"
13
fi
14
15
xzcat $IMG > spr.clean.img
0 commit comments