mirror of
https://github.com/kou029w/megabit-os.git
synced 2025-01-18 16:07:58 +00:00
8 lines
261 B
Bash
Executable file
8 lines
261 B
Bash
Executable file
#!/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}"
|