mirror of
https://github.com/kou029w/yama.git
synced 2025-01-18 16:08:11 +00:00
9 lines
261 B
Text
9 lines
261 B
Text
|
#!/bin/sh
|
||
|
# ベースのイメージをダウンロード
|
||
|
# Usage: bin/download version dist
|
||
|
# Required: curl
|
||
|
set -eu
|
||
|
base="http://dl-cdn.alpinelinux.org/alpine/latest-stable/releases/armhf"
|
||
|
curl "${base}/alpine-rpi-${1}-armhf.tar.gz" \
|
||
|
| tar xzf - -C "${2}"
|