fix(steps-guix): install bash-5.3-1 to /usr/bin in addition to seed prefix for runtime script chaining

This commit is contained in:
vxtls 2026-03-04 12:55:55 -05:00
parent 82124dfd91
commit 0669db4e72

View file

@ -22,6 +22,8 @@ src_compile() {
} }
src_install() { src_install() {
# Keep seed output for bootstrap artifact generation.
install -D -m 0755 bash "${DESTDIR}${SEED_PREFIX}/bin/bash" install -D -m 0755 bash "${DESTDIR}${SEED_PREFIX}/bin/bash"
ln -sf bash "${DESTDIR}${SEED_PREFIX}/bin/sh" # Also provide runtime shell in system prefix for script chaining.
install -D -m 0755 bash "${DESTDIR}/usr/bin/bash"
} }