Smaller downloads that Rufus/balenaEtcher/RPi-Imager still read directly (zstd would break Windows flashers). Switches the image artifact, flashing commands (xz -dc | dd, xz -t, unxz), publish flow (xz -T0 -c), the artifact-manifest script, and all skills + docs to .img.xz. Adds a Windows (Rufus/Etcher) flashing section + README pointer. Source tarballs (clawdie-ai *.tar.gz) unchanged. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
14 lines
506 B
Bash
14 lines
506 B
Bash
#!/bin/sh
|
|
# OBSOLETE: do not use this helper for current operator-USB builds.
|
|
#
|
|
# The active workflow is:
|
|
# - repo-local build from /home/clawdie/ai/clawdie-iso
|
|
# - tmp/ caches and output artifacts in this repo
|
|
# - default tmux window clawdie:3 named "iso"
|
|
# - commit-suffixed raw .img, .img.xz, and .img.xz.sha256 artifacts
|
|
#
|
|
# Use skills/iso-build/SKILL.md instead.
|
|
|
|
echo "ERROR: skills/build-iso/scripts/build-iso.sh is obsolete."
|
|
echo "Use the repo-local workflow in skills/iso-build/SKILL.md."
|
|
exit 1
|