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.gz, and .img.gz.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
|