mirror of
https://github.com/kou029w/uzura.git
synced 2025-01-18 16:08:00 +00:00
10 lines
182 B
Bash
Executable file
10 lines
182 B
Bash
Executable file
#!/bin/sh
|
|
# ビルド
|
|
# Usage: bin/build
|
|
# Required: rsync
|
|
cd -- "$(dirname -- "$0")/.."
|
|
set -eux
|
|
rm -rf dist
|
|
bin/download dist
|
|
rsync -av src/ dist/
|
|
bin/img-gen dist uzura-amd64.img
|